ng 8
add 将对外部库的支持添加到项目中。
build在给定的输出路径上将Angular应用程序编译到名为dist/的输出目录中。必须从工作区目录中执行。
generate g 根据原理图生成和/或修改文件。
new n 创建新工作区和初始Angular应用程序。
serve s 构建并提供应用程序,重建文件更改。
version v 输出Angular CLI版本。
npm install -g @angular/cli 安装新版cli
ng g component home/index 从全局方式在home文件夹下添加index组件
ng g directive my-new-directive 新建指令 待补充
ng g pipe my-new-pipe 新建管道文件
ng g service my-new-service 新建服务文件
ng g class my-new-class 新建类 待补充
ng g interface my-new-interface 新建接口 待补充
ng genummy-new-enum 新建枚举 待补充
ng g module my-module 新建模块文件
ng g module my-module --routing 在src/app/my-module/ 目录下创建名叫 my-module文件名的路由模块 该文件包括一个空Routes对象