一、镜像源链接切换
- 全局切换镜像源:
npm config set registry https://registry.npmmirror.com/
- 查看镜像源使用状态:
npm get registry
- 全局切换官方镜像源:
npm config set registry http://registry.npmjs.org
二、使用 nrm 切换镜像源
- 下载 nrm:
npm install -g nrm
- 查看可切换的镜像源:
nrm ls
(*表示正在使用的镜像源)
npm ---------- https://registry.npmjs.org/
yarn --------- https://registry.yarnpkg.com/
tencent ------ https://mirrors.cloud.tencent.com/npm/
cnpm --------- https://r.cnpmjs.org/
* taobao ------- https://registry.npmmirror.com/
npmMirror ---- https://skimdb.npmjs.com/registry/
- 切换淘宝镜像源:
nrm use taobao
注意:在Linux系统环境里面如果下载nrm后执行nrm ls
命令出现未找到命令,需要配置全局的软链接:
sudo ln -s /home/nodejs/bin/nrm /usr/local/bin/
其中 /home/nodejs/bin/nrm
是指你本地安装nodejs包的路径。/usr/local/bin/
路径是你的程序命令执行路径,相当与Windows系统下的环境变量 PATH 路径,配置后可以在系统的任意位置执行你的命令。