因为有些包需要翻墙或者是境外的服务器,所以使用常规的npm 安装方式有可能安装很慢或者安装失败,所以淘宝就帮我们把一些需要翻墙的包同步到了国内服务器,所以使用淘宝镜像安装速度会很快。
淘宝镜像过期
npm报错:request to https://registry.npm.taobao.org failed, reason certificate has expired
报错问题:提示淘宝镜像过期。npm 淘宝镜像已经从 registry.npm.taobao.org
切换到了 registry.npmmirror.com
直接全局设置为npmmirror
源
npm config set registry https://registry.npmmirror.com
检查是否修改成功
npm config get registry
恢复为默认的npm下载方式
npm config set registry https://registry.npmjs.org/
(2024.04.02更新:以下https:registry.npm.taobao.org
已无法使用,可直接替换为https://registry.npmmirror.com
)
一、临时使用
npm install --registry=https://registry.npm.taobao.org //(多个包安装)
npm --registry https://registry.npm.taobao.org install express
//(单个包安装,express为某个具体包名)
某个具体的包
二、使用cnpm 代替 npm 安装
cnpm是阿里默认安装包的工具,平时使用npm install的方式改为cnpm install即可
1、首先安装cnpm
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
2、检测cnpm版本,如果安装成功可以看到cnpm的基本信息。
cnpm -v
3、以后安装插件只需要使用cnpm intall即可
三、通过更改npm默认下载源的方式
假如不想更改为cnpm的方式,可以采用修改npm配置的形式
npm config set registry https://registry.npm.taobao.org/
检查是否修改成功
npm config get registry
如果淘宝源无法使用可切换npmmirror的镜像源:
https://registry.npmmirror.com
具体设置:
npm config set registry https://registry.npmmirror.com
https://registry.npmmirror.com
四、恢复为默认的npm下载方式
npm config set registry https://registry.npmjs.org/
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。