npm install - npm ERR! exited with error code: 128

问题描述:

在运行 "npm install"的时候,会卡在某一个地方很久,最后会报错如下
 

npm ERR! Error while executing:
npm ERR! C:\Users\jane.shum\AppData\Local\Programs\Git\cmd\git.EXE ls-remote -h -t ssh://[email protected]/eligrey/FileSaver.js.git
npm ERR!
npm ERR! undefined
npm ERR! exited with error code: 128

 

解决方案:

运行一下命令
1. git config --global http.sslverify "false"
2. git config --global url."https://".insteadOf git://

最后再重新运行 “npm install” 就无问题啦

你可能感兴趣的:(react,npm)