Angular CLI 安裝和使用

一、背景介紹

關於Angular版本,Angular官方已經統一命名Angular 1.x同一爲Angular JS;Angular 2.x及以上統稱Angular;css

CLI是Command Line Interface的簡寫,是一種命令行接口,實現自動化開發流程,好比:ionic cli、vue cli等;它能夠建立項目、添加文件以及執行一大堆開發任務,好比測試、打包和發佈。html

官方文檔:https://angular.iovue

官方文檔:https://angular.io/guide/quickstartnode

GitHub:https://github.com/angular/angular-cligit

Angular Material:https://material.angular.io/github

二、安裝Angular CLI

  1. 首先確認安裝了node.js和npm
    // 顯示當前node和npm版本
    $ node -v
    $ npm -v
    // node 版本高於6.9.3  npm版本高於3.0.0
  2. 全局安裝typescript(可選)
    $ npm install -g typescript 
    // 新建項目的時候會自動安裝typescript(非全局)因此這裏也能夠不用安裝。
  3. 安裝Angular CLI
    $ npm install -g @angular/cli

    通過不算漫長的等待,你的Angular CLI就裝好了。確認一下:typescript

    $ ng v
    
    // 出現下面畫面說明安裝成功,若是不成功你可能須要uninstall一下,再從新來過
    $ ng v
        _                      _                 ____ _     ___
       / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
      / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
     / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
    /_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
                   |___/
    @angular/cli: 1.1.1
    node: 7.10.0
    os: darwin x64

三、新建Angular項目

$ ng new my-app

這裏要等好久啊,大概要下載141M東西。
若是你已經建好了項目文件夾就可使用ng init my-app來新建項目,ng init和ng new的區別是ng new會幫咱們建立一個和項目名稱相同的文件夾。npm

趁着它在下載,來看一下運行ng new以後Angular cli已經幫咱們幹了什麼:json

$ 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.

這裏強烈推薦使用淘寶鏡像安裝:bootstrap

$ ng new helloKeriy --skip-install  // 先跳過npm安裝
$ cd helloKeriy
$ cnpm install                      // 使用淘寶源安裝

四、成果展現

安裝完成以後就能夠啓動項目了:

cd helloKeriy
ng serve -open

ng serve命令會啓動開發服務器,監聽文件變化,並在修改這些文件時從新構建此應用。
使用--open(或-o)參數能夠自動打開瀏覽器並訪問http://localhost:4200/
接下來你將看到:

五、安裝Angular Material

5.一、安裝

官方安裝說明:https://material.angular.io/guide/getting-started

npm install --save @angular/material @angular/cdk @angular/animations

而後執行修復

npm audit fix

5.二、配置animations

將BrowserAnimationsModule導入應用程序以啓用動畫支持。

import {BrowserAnimationsModule} from '@angular/platform-browser/animations';

@NgModule({
  ...
  imports: [BrowserAnimationsModule],
  ...
})
export class PizzaPartyAppModule { }

示例:打開app.module.ts並修改:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
 BrowserAnimationsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

5.三、導入組件模塊(component modules)

import {MatButtonModule, MatCheckboxModule} from '@angular/material';

@NgModule({
  ...
  imports: [MatButtonModule, MatCheckboxModule],
  ...
})
export class PizzaPartyAppModule { }

示例:打開app.module.ts並修改:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import {MatButtonModule, MatCheckboxModule} from '@angular/material';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
 MatButtonModule, MatCheckboxModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

5.四、添加主題

包含主題是將全部核心和主題樣式應用於您的應用程序所必需的。要開始使用預先構建的主題,請在應用程序中全局包含Angular Material的預構建主題之一。若是您正在使用Angular CLI,則能夠將其添加到styles.css中。

若是您不使用Angular CLI,則能夠經過 index.html 中的<link>元素包含預構建的主題。有關主題的更多信息以及有關如何建立自定義主題的說明,請參閱主題指南

@import "~@angular/material/prebuilt-themes/indigo-pink.css";

5.五、添加手勢支持(Gesture Support)

npm install --save hammerjs

而後在 src/main.ts 中引入

import 'hammerjs';

5.六、添加圖標

若是您想將mat-icon組件與正式的材質設計圖標一塊兒使用,請在 index.html 中加載圖標字體。

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
相關文章
相關標籤/搜索