切换 npm 的下包镜像源
// 查看当前的下包镜像源
npm config get registry
// 将下包镜像源切换为淘宝镜像源
npm config set registry=https://registry.npmmirror.com/
// 查看镜像源是否切换成功
npm config get registry
nrm 工具
为了方便切换下包资源,我们可以通过 nrm 工具快速且不易出错的切换下包资源
// 通过 npm 包管理器,将 nrm 安装为全局可用的工具
npm i nrm -g
// 查看所有可用的镜像资源
nrm ls
// 将下包资源切换为 taobao 镜像
nrm use taobao
评论