當前位置:
首頁 > 知識 > npm總是報錯:unable to verify the first certificate

npm總是報錯:unable to verify the first certificate

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=""

npm總是報錯:unable to verify the first certificate

喜歡這篇文章嗎?立刻分享出去讓更多人知道吧!

本站內容充實豐富,博大精深,小編精選每日熱門資訊,隨時更新,點擊「搶先收到最新資訊」瀏覽吧!


請您繼續閱讀更多來自 程序員小新人學習 的精彩文章:

Windows下如何查看某個埠被誰佔用
寫給大家看的 Web 安全進階指南

TAG:程序員小新人學習 |