[Note of Angular 2] Getting start

title: ‘[Angular 2 學習筆記] 開始第一個網頁’


  1. 首先需要安裝node.js
  2. clone 官方的範例

    1
    2
    git clone  https://github.com/angular/quickstart  my-proj
    cd my-proj
  3. 移除git相關的檔案

    1
    2
    rm -rf .git  // Mac, Linux
    rd .git /S/Q // windows
  4. 安裝相關的檔案

    1
    npm install
  5. 啟動local端的server

    1
    npm start