Mac OS X 下 TypeScript 开发环境搭建
一、集成开发环境
- WebStrom
- VSCode
二、安装 TypeScript
- Homebrew(macOS 缺失的软件包管理器)
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- npm(Node Package Manager),是 Nodejs 的包管理器
brew install node
- Typescript
npm install -g typescript
Windows 环境下 TypeScript 开发环境搭建
一、集成开发环境
- WebStrom
- VSCode
二、安装 TypeScript
- nodejs 安装包:http://nodejs.cn/download/
- typescript
npm install -g typescript