方式一
镜像管理工具yrm
npm install yrm -g
查看镜像
yrm ls
切换镜像
yrm use 镜像名称
方式二
1、查看当前的镜像源
npm config get registry
或
yarn config get registry
2、设置为淘宝镜像源(全局设置)
npm config set registry https://registry.npm.taobao.org
或
yarn config set registry https://registry.npm.taobao.org
注意:npm 和 yarn 是两个不同的包管理器,如果两个都想用淘宝镜像,则分别都要设置
3、切换回默认镜像源(全局设置)
首先要找到默认的镜像源,然后根据第二步进行设置,即可切回默认镜像源
常用的 默认镜像源
npm ---- https://registry.npmjs.org
yarn --- https://registry.yarnpkg.com
如果你不记得 镜像源,可以借助 nrm 这个工具进行查询
1. 安装 nrm 工具
npm install nrm -g
2. 查看镜像仓库地址
nrm ls
3. 切换镜像源
nrm use taobao
可以能遇到的错误
执行nrm ls报这个错时,需要单独安装open组件
npm install -g nrm open@8.4.2 -save