1. 使用npm查看当前源、切换淘宝镜像、切换官方源
npm查看当前源:
npm get registry
npm设置淘宝镜像源:
npm config set registry http://registry.npm.taobao.org
npm设置官方源:
npm config set registry http://www.npmjs.org
临时安装某个源:
nrm --registry http://registry.npm.taobao.org
2.使用nrm查看和切换镜像
首先需要全局安装nrm
npm install -g nrm
通过nrm查看和切换镜像,下面是我平时用到的
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/
nrm有哪些命令呢:
// 查看所有的源
nrm ls
// 切换 比如切换到 淘宝源
nrm use tobao
// 增加源地址
nrm add
// 删除源地址
nrm del
// 测试所有源的相应时间 看那个更快
nrm test
最后推荐三个开源镜像站
华为:https://mirrors.huaweicloud.com/home
阿里:https://developer.aliyun.com/mirror/
腾讯:https://mirrors.cloud.tencent.com/
希望能帮到大家