angular ng經常使用命令

1.啓動應用服務器瀏覽器

//命令會構建本應用、啓動開發服務器、監聽源文件,而且當那些文件發生變化時從新構建本應用。服務器

ng serve 

  //--open標誌會打開瀏覽器,並訪問 http://localhost:4200/app

 ng serve --open

 //--port標誌瀏覽器端口,並訪問 http://localhost:4201/單元測試

ng serve --port 4201 --open

2.建立列表組件測試

ng generate component heroes //使用 Angular CLI 建立一個名爲 heroes 的新組件。

可縮寫,同樣的效果ui

ng g component heroes

也可縮寫,不會生成單元測試文件 heroes.component.spec.tscode

ng g c --spec= false heroes

3.使用 Angular CLI 建立一個名叫hero服務component

ng generate service hero

能夠經過--module=app 選項讓 CLI 自動把它提供給 AppModule。開發

ng generate service hero --module=app

也可寫module

ng g service hero -m app.module

4.打包

ng build -prod

也能夠簡寫

ng b -prod
相關文章
相關標籤/搜索