解决Error: unable to verify the first certificate报错
1 问题在使用npm install或cnpm install的时候,出现以下报错 Error: unable to verify the first certificate2 原因2017年2月27日,npm不再支持自签名证书。npm install走的是https协议,需要通过数字证书来保证的3 解决方法① 取消ssl验证:npm config set strict-s...
·
1 问题
在使用npm install或cnpm install的时候,出现以下报错 Error: unable to verify the first certificate
2 原因
2017年2月27日,npm不再支持自签名证书。
npm install走的是https协议,需要通过数字证书来保证的
3 解决方法
① 取消ssl验证:npm config set strict-ssl false
如果还没成功,则将npm源更换为国内镜像:
npm config set registry http://registry.npm.taobao.org/
npm config set registry http://registry.cnpmjs.org/
② 升级:npm install npm -g --ca=null
或者 npm config set ca=""
推荐使用方法1
更多推荐
已为社区贡献1条内容
所有评论(0)