npm 报错unable to verify the first certificate
Posted ThisCall
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm 报错unable to verify the first certificate相关的知识,希望对你有一定的参考价值。
npm总是报错:unable to verify the first certificate
今天npm install总是报错:unable to verify the first certificate(无法验证第一证书),查了一下发现
As of February 27, 2014, npm no longer supports its self-signed certificates.
2014年2月27日,npm不再支持自签名证书。
因为npm install走的是https协议,需要通过数字证书来保证的
解决方法1:
取消ssl验证:npm config set strict-ssl false
如果还没成功,则将npm源更换为国内镜像:
npm config set registry http://registry.cnpmjs.org/
npm config set registry http://registry.npm.taobao.org/
解决方法2:
升级:npm install npm -g --ca=null
或者 npm config set ca=""
推荐使用方法1
以上是关于npm 报错unable to verify the first certificate的主要内容,如果未能解决你的问题,请参考以下文章
Yii框架用ajax提交表单时候报错Bad Request (#400): Unable to verify your data submission.
npm install 报错:verbose stack Error: unable to resolve dependency tree
NodeJs的npm安装install报错:code ERESOLVE ERESOLVE unable to resolve dependency tree
nodejs中使用request时出现unable to verify the first certificate的一种解决办法