npm源切换加速利器—nrm
原创大约 1 分钟
npm源切换加速利器—nrm
主要官方来源:npmjs-nrm
nrm
可以帮助您轻松快速地切换不同的 npm 注册表。它支持npm
、cnpm
、taobao
、yarn
、tencent
、npmMirror
和huawei
。
安装nrm
# npm 安装
npm install -g nrm
安装成功后,使用nrm --version
查看命令,验证是否安装正常。
使用指南
nrm ls
查看源列表
$ nrm ls
* npm ---------- https://registry.npmjs.org/
yarn --------- https://registry.yarnpkg.com/
tencent ------ https://mirrors.tencent.com/npm/
cnpm --------- https://r.cnpmjs.org/
taobao ------- https://registry.npmmirror.com/
npmMirror ---- https://skimdb.npmjs.com/registry/
huawei ------- https://repo.huaweicloud.com/repository/npm/
nrm use
切换镜像
$ nrm use taobao
SUCCESS The registry has been changed to 'taobao'.
nrm current
查看当前源
$ nrm current
You are using taobao registry.
nrm test
测试所有源的响应时间
$ nrm test
npm ---------- 823 ms
yarn --------- 799 ms
tencent ------ 964 ms
cnpm --------- 1882 ms
* taobao ------- 184 ms
npmMirror ---- 871 ms
huawei ------- 845 ms
nrm add
添加镜像源
$ nrm add <源名> <源URL>
nrm del
删除镜像源
nrm del <源名>
统一切换npm,pnpm,yarn镜像源
使用 nrm
切换镜像源时,通常会修改 .npmrc
配置文件,这会同时影响 npm
和 pnpm
。
nrm use huawei
- 验证
npm
镜像源:npm config get registry
- 验证
pnpm
镜像源:pnpm config get registry
为了确保nrm use
命令, yarn
也同步更新镜像源,在 ~/.zshrc
中中添加以下内容:
nrm() {
if [ "$1" = "use" ] && [ -n "$2" ]; then
command nrm use "$2"
yarn config set registry $(npm config get registry)
echo "Yarn registry updated to $(yarn config get registry)"
else
command nrm "$@"
fi
}
执行source ~/.zshrc
后,验证 yarn
镜像源:
yarn config get registry