【npm淘宝镜像源更新】教你完整的解决方案

1. 最新消息

由于node安装插件是从国外服务器下载,如果没有“魔法工具”,就可能会遇到下载速度慢、或其它异常问题。

在 1 月 22 日,淘宝原镜像域名(registry.npm.taobao.org)的 HTTPS 证书正式到期。如果想要继续使用,需要将 npm 源切换到新的源(registry.npmmirror.com),否则会报错。

 【npm淘宝镜像源更新】教你完整的解决方案_第1张图片

如果你使用淘宝命令工具cnpm,则不需要去手动更新镜像地址,官方已自动做了处理。

如果你是将npm官方镜像改成了淘宝镜像,则需要按下面步骤去手动更新。

// 1. 清空缓存
npm cache clean --force

// 2. 切换新源
npm config set registry https://registry.npmmirror.com

如果你是第一次使用npm淘宝镜像

npm官方镜像改成淘宝镜像最新的使用方式:

// 1. 切换镜像源
npm config set registry https://registry.npmmirror.com

// 2. 检测是否切换成功
npm config get registry

淘宝命令工具cnpm的安装及使用方式

// 1. 安装cnpm
npm install -g cnpm --registry=https://registry.npmmirror.com

// 2. 检测是否安装成功
cnpm -v

你可能感兴趣的:(node,npm,前端,node.js)