首页 前端知识 【Node.js】npm ERR! request to https://registry.npm.taobao.org/cnpm failed ... certificate has expired

【Node.js】npm ERR! request to https://registry.npm.taobao.org/cnpm failed ... certificate has expired

2024-05-26 00:05:02 前端知识 前端哥 1002 964 我要收藏

问题描述

在使用NPM安装包的过程中,出现以下错误:

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


原因分析

请求到的 https://registry.npm.taobao.org/cnpm 失败,原因是证书已经过期。

2024年1月22日,淘宝NPM镜像站的域名 registry.npm.taobao.org 的SSL证书过期。


解决方案

  1. 清理NPM的缓存
npm cache clean --force
  1. 切换到新的NPM镜像站
npm config set registry https://registry.npmmirror.com
  1. 检查是否成功切换到新的镜像站
npm config get registry

如果这个命令返回的是 https://registry.npmmirror.com,那么就说明已经成功切换到了新的镜像站。


参考资料

https://developer.aliyun.com/article/801527
https://juejin.cn/post/7327472360863924224

转载请注明出处或者链接地址:https://www.qianduange.cn//article/9559.html
标签
评论
发布的文章

html5怎么实现语音搜索

2024-06-01 10:06:32

HTML5

2024-02-27 11:02:15

HTML - 头部元素

2024-06-01 10:06:06

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