当前位置 : 主页 > 编程语言 > java >

在Vscode上用Code Runner直接运行TypeScript

来源:互联网 收集:自由互联 发布时间:2022-09-02
文章目录 ​​一、背景​​ ​​二、基本安装​​ ​​二、编写程序运行​​ 一、背景 前端程序员为了学习Vue3.0框架,不可避免地会涉及TypeScript语言。在语言学习过程中我们希望能


文章目录

  • ​​一、背景​​
  • ​​二、基本安装​​
  • ​​二、编写程序运行​​

一、背景

  • 前端程序员为了学习Vue3.0框架,不可避免地会涉及TypeScript语言。在语言学习过程中我们希望能搭建一个简便的开发环境,省时也省力。
  • 本文将介绍用Vscode使用Code Runner扩展插件,搭建简便的TypeScript调试运行环境。

二、基本安装

  • 安装Node和Npm​​(下载链接)​​
> node -v
v10.15.3
> npm
  • 安装TypeScript
> npm install typescript -g
>
  • 安装ts-node
> npm install ts-node -g
>
  • 安装Code Runner插件
  • 在Vscode上用Code Runner直接运行TypeScript_程序运行

二、编写程序运行

  • 建立一个文件夹
> mkdir typescript-demo
> cd
  • 初始化环境,生成package.json
> npm

在Vscode上用Code Runner直接运行TypeScript_程序运行_02

  • 编写demo程序
class Student {
name:String
age:Number

constructor(name:String,age:Number){
this.name = name;
this.age = age
}
}

let student = new Student('Jack',16)
console.log(student)
  • 运行程序
  • 在Vscode上用Code Runner直接运行TypeScript_v9_03


上一篇:JAVA接口解析续
下一篇:没有了
网友评论