windows10 下 安裝npm 和 node
1、下載下傳 node.msi 安裝包,裡面包含了node.js和npm;
輕按兩下node.msi就行了,選擇安裝路徑和npm
[https://nodejs.org/en/download/](https://nodejs.org/en/download/)
2、設定環境變量
我的安裝目錄為:D:\Program Files\nodejs
是以:
變量名:NODE_PATH
值:D:\Program Files\nodejs\node_modules
3 、安裝git 配置環境變量
我的路徑:D:\Program Files (x86)\Git\bin
4、 運作 angular 2 的模闆(sing):
# change directory to our repo
cd sing/angular2
# makesure typings are installed globally
npm install -g typings
# install the repo with npm
npm install
# start the server
npm start
# use Hot Module Replacement
npm run server:dev:hmr
go to
http://0.0.0.0:3000or
http://localhost:3000in your browser