TypeScript入门
用TypeScript之前需要有安装Node.js还有相关的typescript支持
先下载Node.js
Node.js
下载安装Node.js,建议是到它的官网上去下载安装
https://nodejs.org/
点击上面的DOWNLOADS这里我们选择适合的平台的版本下载安装就可以了,Windows上的安装非常简单,一直点就可以了。
安装TypeScript依赖
这里我们到TypeScript中文网
找到最上方的下载
安装方式很简单
npm install -g typescript
可以看到右侧有很多编辑器,如果有使用对应的编辑器的直接点进去安装对应的插件就可以了。
编写一个简单的示例
新建一个文本,输入以下示例
例如
helloworld.ts
"use strict" class Student { name : string; constructor(public inputname) { this.name = inputname; } public SayHello() { console.log("Hello, My name is", this.name); } } function main() { let zhangsan = new Student("zhangsan"); zhangsan.SayHello(); } main();
编译运行
编译
tsc helloworld.ts
默认不带参数就是按照原来的文件名,编译后缀为js,即helloworld.js
如果不想按照默认的,可以自己修改
tsc helloworld.ts --outFile hello.js
运行
这里我们直接用Node.js测试
node helloworld.js Hello, My name is zhangsan
BTY
我们可以在TypeScript中文网看到一下教程文档,这些文档可以帮助你快速熟悉TypeScript
5分钟上手TypeScript
手册指南