今天,启动一个纯前端的老项目,安装依赖时报错。
npm 错误:request to https://registry.npm.taobao.org/ failed, reason: certificate has expired
从报错信息可看出,以前经常使用的淘宝镜像https://registry.npm.taobao.org/的证书过期了,就是该域名的备案证书过期了,但似乎直到2024年1月才完全失效。
既然淘宝已经换了新域名,那就将原先配置的npm镜像源更改就好了。
1.查看当前npm镜像
npm config get
2.配置新的镜像
npm config set registry https://registry.npmmirror.com
3.再次查看镜像配置情况
npm config get
我更换后依然报错,然后发现是package-lock.json内锁定的还是旧的镜像源。
于是我将package-lock.json的https://registry.npm.taobao.org替换为https://registry.npmmirror.com,即可安装依赖成功。
ps:我在运行项目时报错
digital envelope routines::unsupported
是因为当前电脑node版本过高,解决方法为:
打开IDEA 终端,直接输入
$env:NODE_OPTIONS="--openssl-legacy-provider"
重新运行项目即可。
标签:npm,certificate,request,taobao,registry,https,镜像,org From: https://www.cnblogs.com/luoyihao/p/18041616