title: ‘[Angular 2 學習筆記] 開始第一個網頁’
- 首先需要安裝
node.js
clone 官方的範例
1
2git clone https://github.com/angular/quickstart my-proj
cd my-proj移除git相關的檔案
1
2rm -rf .git // Mac, Linux
rd .git /S/Q // windows安裝相關的檔案
1
npm install
啟動local端的server
1
npm start