Skip to content

2 Ts初体验

2.1 安装

bash
npm install -g typescript
tsc -v #查看版本

2.2 编译

bash
tsc hello.ts -w
node hello.js
# 简化
npm i -g nodemon
nodemon hello.ts