2017-09-18 Angular Angular 入门:angular/cli 安装 & 更新123456789yarn global add @angular/cli# 查看版本ng --version# 更新 @angular/cliyarn global remove @angular/cliyarn cache cleanyarn global add @angular/cli@latest 新建项目123456789101112131415ng new [name]# 新建项目时不安装依赖(默认安装)ng new [name] --skip-install# 或, 简写ng new [name] -si# 新建项目时使用 scss (默认为 css)ng new [name] --style=scss# 新建项目时安装路由(默认不安装)ng new [name] --routing# 综合ng new [name] -si --routing --style=scss 新建模块、组件、服务等12345678# 新建模块ng g module [path/name]# 新建组件ng g component [path/name]# 其他支持命令行创建的模块component、directive、pipe、service、class、guard、interface、enum、module 开发模式12345678# 开启 dev 模式ng server# 开启 dev 模式(自动打开浏览器)ng server -o# 自定义端口号ng server --port=4201 生产构建1ng build --prod 参考 angular-cli 下一篇 Angular 入门:基础介绍 上一篇 算法相关