近期使用npm淘宝镜像新建项目或依赖时出现报错
npm ERR! request to https://registry.npm.taobao.org/XXX failed, reason: certificate has expired
解决方法:
npm config set registry https://registry.npmmirror.com
可以在必要时在清理缓存:
npm cache clean --force
查看当前配置:
npm config get registry
原因:
2024年1 月 22 日,淘宝原镜像域名(http://registry.npm.taobao.org)的 HTTPS 证书正式到期,导致旧的 npm 淘宝镜像在使用时出错了,大家更换一下即可。