我正在尝试学习节点和npm和gulp以及所有但是我遇到了这个错误。
$ npm install --save-dev gulp
npm ERR! Windows_NT 6.3.9600
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "--save-dev" "gulp"
npm ERR! node v6.10.0
npm ERR! npm v3.10.10
npm ERR! code SELF_SIGNED_CERT_IN_CHAIN
npm ERR! self signed certificate in certificate chain
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR! <https://github.com/npm/npm/issues>
npm ERR! Please include the following file with any support request:
npm ERR! C:\Users\davidb\desktop\testproject\npm-debug.log
有谁知道如何解决这个问题?我使用gitbash而不是节点,因为在我的节点中我甚至不能做node-v我必须使用process.version来获取版本。对此的帮助将不胜感激!我一直在使用http://blog.npmjs.org/post/78165272245/more-help-with-selfsignedcertinchain-and-npm来解决问题,但没有任何工作。
还尝试过:
npm config set ca ""
and
npm install npm -g --ca=""
两者都没有工作,我仍然得到错误npm ERR!代码SELF_SIGNED_CERT_IN_CHAIN
答案 0 :(得分:0)
也许Windows的SSL拦截代理正在弄乱你的npm。
Checkout Github问题答案 - https://github.com/npm/npm/issues/7519#issuecomment-97522305
其他选择:
npm config set registry http://registry.npmjs.org/
但这会降低您的安全性。