解决:npm ERR! request to https://registry.npm.taobao.org failed, reason: certificate has expired
最近在给电脑安装APPIUM时,新的机器上npm install遇到
npm ERR: request to https://registry.npm.taobao.org failed, reason: certificate has expired
翻译成中文就是:请求 https://registry.npm.taobao.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,只需配置正确的镜像地址即可~