換源:
- 可用源:
Lable
Url
npm
https://www.npmjs.org
cnpm
http://cnpmjs.org
nodejitsu
https://www.nodejitsu.com
taobao
https://registry.npm.taobao.org
rednpm
http://npm.mirror.cqupt.edu.cn
yarn
https://registry.yarnpkg.com
- 檢視當前的
npm
源:npm config get registry
; - 臨時修改:
npm install :{package_name} --registry :{registry_url}
; - 設定
npm
的配置項「全域性配置」:npm config set registry :{registry_url}
; - 使用第三方工具切換
npm
源:
Tips
- 更新
npm
:npm install npm --global
; - 安裝指定版本的包:
npm install :{package_name}@:{version_number}
; npm install --no-bin-links
中的引數no-bin-links
表示什麼意思?- 字面意思是設定
npm install
時不要建立符號連結。是為了解決linux
下的npm
在ntfs
分割槽上執行npm install
遇到的建立軟連線失敗問題引入的。
- 字面意思是設定
本作品採用《CC 協議》,轉載必須註明作者和本文連結