1- 初始化 Node.js
1. 建立 Node.js project package.json.
$ npm init -y
2. 安裝 TypeScript
$ npm install typescript --save-dev
3. 加入 node.d.ts
$ npm install @types/node --save-dev
4. 加入 TypeScript 的设置文件 tsconfig.json
$ npx tsc --init
2- 建立开发环境 Live Compile + Run
- 加入实时编译模块 ts-node
$ npm install ts-node --save-dev
2. 加入 nodemon ,监听文件变化以触发 ts-node
npm install nodemon --save-dev
3. 将 script 加入 package.json
{
"***start***": "npm run build:live",
"***build:live***": "nodemon --exec ./node_modules/.bin/ts-node -- ./index.ts",
"***build***": "tsc index.ts"
}
注意修改index.ts为实际的ts文件