淘宝npm镜像源换新地址

简介:用CNPM/淘宝源的开发者们请注意,淘宝NPM 镜像站喊你切换新域名啦。
新的Web 站点:https://npmmirror.com,Registry Endpoint:https://registry.npmmirror.com。
随着新的域名已经正式启用,老 http://npm.taobao.org 和 http://registry.npm.taobao.org 域名将于 2022 年 05 月 31 日零时起停止服务。(望周知,求转发)

新的淘宝npm镜像源地址:https://registry.npmmirror.com

这期间如果还用旧的镜像源很可能有以下问题:

同时新的镜像源地址在安装时,package-lock.json中的包下载地址会出现两个:

  1. https://registry.npmmirror.com
  2. https://registry.nlark.com

但是实际的下载地址不知有这两个地址在下载文件的时候都会跳转到 https://oss.npmmirror.com/

而跳转的这个地址获取不到npm包会导致报404,从而引起编译失败

切换新的镜像源

npm config set registry https://registry.npmmirror.com

然后再执行以下操作查看是否成功

npm config list

如果没安装过淘宝镜像源的,则直接安装

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

参考文章:

npm 切换镜像站点

淘宝 NPM 镜像站切换新域名啦

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