npm安装依赖时,出现报错: https://registry.npm.taobao.org/: certificate has expired
,这是因为之前设置过npm使用淘宝源,而淘宝源证书过期了。
解决方法——替换新的淘宝源 https://registry.npmmirror.com/
打开终端
#查看 npm 当前设置
$ npm config get registry
#设置新的淘宝源npm镜像
$ npm config set registry https://registry.npmmirror.com
#查看设置是否成功
$ npm config get registry
如果打印出来的是 https://registry.npmmirror.com,则说明已经设置成功
同理,如果你使用的是yarn,只要换以下命令更新配置即可:
$ yarn config get registry
$ yarn config set registry https://registry.npmmirror.com
$ yarn config get registry
再次执行之前的安装依赖命令,就能成功拉取依赖包啦!