我们在执行设置淘宝镜像时突然报了
npm ERR! request to https://registry.npm.taobao.org/concurrently failed, reason: certificate has expired
这是由于原淘宝npm的镜像地址“证书失效”导致的
老 npm.taobao.org 和 registry.npm.taobao.org 域名已于 2022 年 05 月 31 日零时起停止服务,
而 npm.taobao.org 这个网站的证书已于 2024年01月22日过期,故报该错误~
别担心,我们只需要将命令替换成新的镜像地址 npm config set registry https://registry.npmmirror.com 即可解决!
如果执行完后依旧是报同样的报错,请依次执行以下两行命令
npm cache clean --force
npm config set strict-ssl false