Angular ng常用命令

1.启动应用服务器

//命令会构建本应用、启动开发服务器、监听源文件,并且当那些文件发生变化时重新构建本应用。

ng serve 
//--open标志会打开浏览器,并访问 http://localhost:4200/

ng serve --open
//--port标志浏览器端口,并访问 http://localhost:4201/

ng serve --port 4201 --open 

2.创建列表组件

ng generate component heroes //使用 Angular CLI 创建一个名为 heroes 的新组件。

可缩写,一样的效果

ng g component heroes

也可缩写,不会生成单元测试文件 heroes.component.spec.ts

ng g c --spec= false heroes

3.使用 Angular CLI 创建一个名叫hero服务

ng generate service hero

可以通过--module=app 选项让 CLI 自动把它提供给 AppModule

ng generate service hero --module=app

也可写

ng g service hero -m app.module

4.打包

ng build -prod

也可以简写

ng b -prod

你可能感兴趣的:(Angular.js)