共计 1125 个字符,预计需要花费 3 分钟才能阅读完成。
原始源
装置完 node 之后,默认的原始源是:
https://registry.npmjs.org/
cnpm
原始源在国外,所以速度受到限制。
能够通过装置 cnpm 应用淘宝镜像来进行减速:
// 装置 cnpm 命令, 不会扭转 npm 的源
npm install -g cnpm --registry=https://registry.npm.taobao.org
// 应用
cnpm install
然而应用 cnpm 有时会有一些奇怪的谬误,能够通过扭转源的形式来进行减速。
长期扭转源
应用 npm
命令的时候,能够指定源:
// 本次从淘宝仓库源下载
npm --registry=https://registry.npm.taobao.org install
设置源
间接设置源
能够间接设置源,源能够是多个,但只有一个是失效的。
// 设置淘宝源
npm config set registry https://registry.npm.taobao.org
// 设置公司的源
npm config set registry http://127.0.0.1:4873
// 查看源,能够看到设置过的所有的源
npm config get registry
也能够批改 ~/.npmrc
,增加源的设置:
registry = https://registry.npm.taobao.org
应用 nrm 治理源
nrm
是一个 NPM 源管理器,能够应用 nrm
在不同的源切换。
装置 nrm
npm install -g nrm
列出可选的源
nrm ls
后果:
* npm -------- https://registry.npmjs.org/
yarn ------- https://registry.yarnpkg.com/
cnpm ------- http://r.cnpmjs.org/
taobao ----- https://registry.npm.taobao.org/
nj --------- https://registry.nodejitsu.com/
npmMirror -- https://skimdb.npmjs.com/registry/
edunpm ----- http://registry.enpmjs.org/
带 *
的是以后应用的源。
切换源
切换到 taobao:
nrm use taobao
减少源
能够减少定制的源,特地实用于增加企业外部的公有源。
nrm add <registry> <url> [home]
删除源
nrm del <registry>
测试速度
还能够通过 nrm test
测试相应源的响应工夫。
nrm test npm
后果:
npm ---- 1328ms
<big> 参考:</big>
【1】:npm 设置和查看仓库源
【2】:设置 npm 源的几种形式
【3】:nrm —— 疾速切换 NPM 源(附带测速性能)
正文完