有几个月没摸项目了,今天在新的机器上npm install
遇到 npm ERR: request to https://registry.npm.taobao.org failed, reason: certificate has expired
翻译成中文就是:请求 https://registry.npm.taobao.org 失败,原因:证书已过期
省流助手: ` npm config set registry https://registry.npmjs.org/
问题由来
其实熟悉 npm 国内镜像的开发者应该知道 淘宝 NPM 镜像站早就切换新域名 ,老 npm.taobao.org 和 registry.npm.taobao.org 域名将于 2022 年 05 月 31 日零时起停止服务,而 npm.taobao.org 这个网站的证书已于 2024年01月22日过期了。这也就是为啥request to https://registry.npm.taobao.org failed, reason: certificate has expired
解决方法
- 使用正确的镜像源
npm config set registry https://registry.npmmirror.com
我们通过安装nrm工具之后,可以看到淘宝镜像是https://registry.npmmirror.com
,因此解决certificate has expired,只需配置正确的镜像地址即可~