当前位置:   article > 正文

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

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

一、报错问题:提示淘宝镜像过期
在这里插入图片描述
二、错误提示已经告诉原因是淘宝镜像过期了!
其实,早在 2021 年,淘宝就发文称,npm 淘宝镜像已经从 registry.npm.taobao.org 切换到了 registry.npmmirror.com。旧域名也将于 2022 年 5 月 31 日停止服务(不过,直到今天 HTTPS 证书到期才真正不能用了)
在这里插入图片描述
三、解决方案
1、查看当前的npm镜像设置:npm config list
在这里插入图片描述

2、清空缓存:npm cache clean --force

3、然后修改镜像即可:npm config set registry https://registry.npmjs.org/ (或npm config delete registry)

!!!注意:此处修改的镜像用的是npm本身,一般国内用户还是建议使用淘宝镜像,所以推荐还是设置成用淘宝镜像,执行:npm config set registry https://registry.npmmirror.com 【推荐】
4、再次运行: npm config list,查看 registry 已经被更改为默认的 npm 公共镜像地址。
在这里插入图片描述

然后就可以正常使用npm啦~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/141746
推荐阅读
相关标签
  

闽ICP备14008679号