npm -version 檢視npm版本
npm install <name> 安裝node.js的依賴包
npm install <name> @3.0.6 安裝版本為3.0.6的依賴包
npm install <name> --save 安裝的同時將資訊寫入package.json 中
npm install <name> -g 全域性安裝
npm init 會引導你建立一個package.json檔案,包括名稱,版本,作者等這些資訊
npm remove express 移除express
npm update express 更新express
npm ls 列出當前安裝的所有包
npm root 檢視當前包的安裝路徑
npm root -g 檢視全域性包的安裝路徑
npm help 幫助
npm view express dependencies 檢視express 包的依賴關係
npm view express respository.url 檢視express包的原始檔地址
npm -version 檢視npm版本
npm install <name> 安裝node.js的依賴包
npm install <name> @3.0.6 安裝版本為3.0.6的依賴包
npm install <name> --save 安裝的同時將資訊寫入package.json 中
npm install <name> -g 全域性安裝
npm init 會引導你建立一個package.json檔案,包括名稱,版本,作者等這些資訊
npm remove express 移除express
npm update express 更新express
npm ls 列出當前安裝的所有包
npm root 檢視當前包的安裝路徑
npm root -g 檢視全域性包的安裝路徑
npm help 幫助
npm view express dependencies 檢視express 包的依賴關係
npm view express respository.url 檢視express包的原始檔地址