首页 前端知识 npm安装报错 npm ERR! request to https://registry.npm.taobao.org/ failed, reason: certificate has expired

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

2024-05-07 13:05:30 前端知识 前端哥 206 171 我要收藏

问题描述:
npm使用淘宝镜像安装报错

npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/xxx failed, reason: certificate has expired

错误原因:
2024年1 月 22 日,淘宝原镜像域名(registry.npm.taobao.org)的 HTTPS 证书正式到期,导致旧的 npm 淘宝镜像在使用时出错了。
早在 2021 年,淘宝就发文称,npm 淘宝镜像已经从 registry.npm.taobao.org 切换到了 registry.npmmirror.com。旧域名也将于 2022 年 5 月 31 日停止服务(不过,直到 HTTPS 证书到期才真正不能用了)。
解决方案:

// 1. 清空缓存
npm cache clean --force
// 2. 切换新源
npm config set registry https://registry.npmmirror.com
// 3. 查看源是否设置成功
npm config get registry
// 4. 可以正常安装需要的工具了
npm insatll xxx
)
转载请注明出处或者链接地址:https://www.qianduange.cn//article/7377.html
标签
评论
发布的文章

Pycharm创建json文件类型

2024-05-12 00:05:50

C#Post请求,带json参数。

2024-05-12 00:05:28

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!