常规的npm安装方式有可能安装很慢或者安装失败,因为有些包是境外的服务器,所以淘宝就帮我们把一些需要vpn才能访问的包同步到了国内服务器,所以使用淘宝镜像安装速度会很快。

npm.taobao.orgregistry.npm.taobao.org 域名已于 2022 年 05 月 31 日零时起停止服务,由registry.npmmirror.com域名继续提供服务。目前两个老的域名均会301重定向到新的镜像域名,但强烈建议大家在停服之前切换到新的新的镜像域名。

淘宝镜像过期

npm报错:request to https://registry.npm.taobao.org failed, reason certificate has expired

报错问题:提示淘宝镜像过期。npm 淘宝镜像已经从 registry.npm.taobao.org 切换到了 registry.npmmirror.com

一、全局设置

通过更改npm默认下载源的方式设置为npmmirror

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

检查是否修改成功

npm config get registry

恢复为默认的npm下载方式

npm config set registry https://registry.npmjs.org/

二、临时使用

npm install --registry=https://registry.npmmirror.com //(多个包安装)

npm --registry https://registry.npmmirror.com install express
//(单个包安装,express为某个具体包名)

三、使用cnpm 代替 npm 安装

cnpm是阿里默认安装包的工具,平时使用npm install的方式改为cnpm install即可

1、首先安装cnpm

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

2、检测cnpm版本,如果安装成功可以看到cnpm的基本信息。

cnpm -v

3、以后安装插件只需要使用cnpm intall即可

恢复为默认的npm下载方式

npm config set registry https://registry.npmjs.org/

ZHAO_
454 声望11 粉丝

前端开发