1. 程式人生 > >npm 遇到的坑

npm 遇到的坑

命令 取消 驗證 reat 輸入 證書 react ins style

在腳手架方式搭建react項目時,輸入命令:npm install -g create-react-app,出現錯誤:

UNABLE_TO_VERIFY_LEAF_SIGNATURE
UNABLE_TO_VERIFY_LEAF_SIGNATURE
unable to verify the first certificate(無法驗證第一證書)


然後各種報錯。

因為npm install走的是https協議,需要通過數字證書來保證的,

所以,取消ssl驗證:npm config set strict-ssl false

npm 遇到的坑