使用npm命令安装Taro框架的时候,尽管已经设置淘宝源但是仍然无法下载,提示错误
>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
错误原因:
这个错误表示发生了证书过期的错误。由于npm请求淘宝源(https://registry.npm.taobao.org)时,发现其证书已经过期所导致的。
解决办法:
将原来的源 registry.npm.taobao.org 更改为 registry.npmmirror.com。
npm config set registry https://registry.npmmirror.com/