Angular CLI 安裝和使用
阿新 • • 發佈:2019-01-12
根節點 github image sco set 關於 3.0 新建項目 for
1.背景介紹
關於Angular版本,Angular官方已經統一命名Angular 1.x同一為Angular JS;Angular 2.x及以上統稱Angular;
CLI是Command Line Interface的簡寫,是一種命令行接口,實現自動化開發流程,比如:ionic cli、vue cli等;它可以創建項目、添加文件以及執行一大堆開發任務,比如測試、打包和發布。
官方文檔:https://github.com/angular/angular-cli
2.安裝Angular CLI
- 首先確認安裝了node.js和npm
// 顯示當前node和npm版本 $ node -v
- 全局安裝typescript(可選)
$ npm install -g typescript // 新建項目的時候會自動安裝typescript(非全局)所以這裏也可以不用安裝。
- 安裝Angular CLI
$ npm install -g @angular/cli
經過不算漫長的等待,你的Angular CLI就裝好了。確認一下:
$ ng v // 出現下面畫面說明安裝成功,如果不成功你可能需要uninstall一下,再重新來過 $ ng v _ _ ____ _ ___
3.新建Angular項目
$ ng new my-app
這裏要等很久啊,大概要下載141M東西。
如果你已經建好了項目文件夾就可以使用ng init my-app來新建項目,ng init和ng new的區別是ng new會幫我們創建一個和項目名稱相同的文件夾。
趁著它在下載,來看一下運行ng new之後Angular cli已經幫我們幹了什麽:
$ ng new helloKeriy installing ng create .editorconfig create README.md create src/app/app.component.css // 使用HTML模板、CSS樣式和單元測試定義AppComponent組件。 它是根組件,隨著應用的成長它會成為一棵組件樹的根節點。 create src/app/app.component.html create src/app/app.component.spec.ts create src/app/app.component.ts // 定義AppModule,這個根模塊會告訴Angular如何組裝該應用 create src/app/app.module.ts create src/assets/.gitkeep // 這個文件夾下你可以放圖片等任何東西,在構建應用時,它們全都會拷貝到發布包中。 create src/environments/environment.prod.ts create src/environments/environment.ts create src/favicon.ico // 每個網站都希望自己在書簽欄中能好看一點。 請把它換成你自己的圖標。 create src/index.html // 宿主頁面 create src/main.ts create src/polyfills.ts create src/styles.css // 公共樣式 create src/test.ts // 這是單元測試的主要入口點 create src/tsconfig.app.json create src/tsconfig.spec.json create src/typings.d.ts create .angular-cli.json // Anguar 編譯依賴 create e2e/app.e2e-spec.ts // e2e 端對端測試目錄 create e2e/app.po.ts create e2e/tsconfig.e2e.json create .gitignore create karma.conf.js create package.json // Angular 的依賴包 create protractor.conf.js create tsconfig.json // TypeScript 編譯器的參數 create tslint.json Successfully initialized git. Installing packages for tooling via npm. Installed packages for tooling via npm. Project ‘helloKeriy‘ successfully created.
這裏強烈推薦使用淘寶鏡像安裝:
$ ng new helloKeriy --skip-install // 先跳過npm安裝 $ cd helloKeriy $ cnpm install // 使用淘寶源安裝
4.成果展示
安裝完成之後就可以啟動項目了:
cd helloKeriy
ng serve -open
ng serve命令會啟動開發服務器,監聽文件變化,並在修改這些文件時重新構建此應用。
使用--open(或-o)參數可以自動打開瀏覽器並訪問http://localhost:4200/。
接下來你將看到:
Angular CLI 安裝和使用