美文网首页
node.js在install插件时报错(webstorm集成l

node.js在install插件时报错(webstorm集成l

作者: hamieva | 来源:发表于2017-05-22 10:04 被阅读0次

今天npm install总是报错:unable to verify the first certificate(无法验证第一证书),查了一下发现:

2014年2月27日,npm不再支持自签名证书;

因为npm install走的是https协议,需要通过数字证书来保证的;

解决方法1:

取消ssl验证:npm config set strict-ssl false;

如果还没成功,则将npm源更换为国内镜像:

npm config set registryhttp://registry.cnpmjs.org/

npm config set registryhttp://registry.npm.taobao.org/

解决方法2:

升级:npm install npm -g --ca=null或者 npm config set ca="";

                                                                                                                         转载请注明来源!

相关文章

网友评论

      本文标题:node.js在install插件时报错(webstorm集成l

      本文链接:https://www.haomeiwen.com/subject/xzajxxtx.html