npm
Node.js 裡面就包含了 npm
安裝
- mac
brew install node
- windows download
node -v # 確認 Node.js 已安裝
npm -v # 確認 npm 已安裝
npm start
command line
npm list -g --depth=0 # list global package
npm install npm@latest -g # 更新
Node Package
npm install bower -g # package manager
npm install cloc -g # 計算原始碼行數
npm install doctoc -g # 為 markdown 建立目錄
npm install tldr -g # 社群維護的 man page
npm install webpack -g
npm install yo -g
Plato: 原始碼視覺化
npm install -g plato # install module
plato -r -d report src # 分析 /src 中的 js,產生分析報告於 /report
設定
# 查看設定
npm config list
# 設定 npm install proxy
npm config set proxy http://proxy.company.com:8080 # http
npm config set https-proxy http://proxy.company.com:8080 # https