赞
踩
安装
ts-node 需要在全局去安装。这里要用 npm 去全局安装,yarn 全局安装好像用不了 ts-node
全局安装:
- npm install -g typescript
- npm install -g ts-node
本地安装:用npx ts-node 程序名
- npm install typescript
- npm install ts-node
简单程序:test.ts
const output = "Hello world"
console.log(output)
执行:
ts-node test.ts
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。