安装
安装编译器
在安装 typescript 之前请确保安装了 node.js
sh
# 在项目中安装
npm i typescript@4.8 -D
# 全局安装
npm i -g typescript@4.8
快速体验 typescript
sh
## 新建node项目
mkdir ts-quick-starter && cd mkdir ts-quick-starter
npm -y init
## 安装 typescript 编译器
npm i -D typescript@4.8
## 新建 hello.ts
echo "var str: string = 'hello ts';\nconsole.log(str);" > hello.ts
## 将 ts 编译为 js, 然后用 node 运行
tsc ./hello.ts
node ./hello.js