npm切换淘宝镜像源
1、查看当前npm镜像源
npm config get registry
注:这个命令会显示当前npm配置的镜像源地址。如果不是淘宝的npm镜像地址,可以根据自己需求进行切换
2、切换npm镜像源到淘宝
注:由于淘宝npm镜像的旧域名(如npm.taobao.org和registry.npm.taobao.org)停止服务。当前淘宝npm镜像的最新地址是
https://registry.npmmirror.com/
切换淘宝镜像命令
npm config set registry https://registry.npmmirror.com/
3、验证npm镜像源是否切换成功,可以使用查看命令
npm config get registry
注:如果切换成功会返回地址https://registry.npmmirror.com/
4、如果不想永久使用镜像源,设置临时镜像源
npm install express --registry=https://registry.npmmirror.com/
注:这样不会更改全局的npm源设置,仅在当前命令执行时使用指定的镜像源地址