npm install 报错 10054

首先,造成这个错误很有可能是网络不稳定,连接超时导致的,

如果再次尝试后依然报错,可以执行下面的命令。

打开Git命令页面,执行git命令脚本:修改设置,解除ssl验证

git config --global http.sslVerify "false"

此时,再执行git操作即可。

这种问题经常出现在npm install时,错误提示如下:
...
npm WARN deprecated [email protected]: use String.prototype.padStart() 
npm ERR! Error while executing:
npm ERR! C:\Program Files\Git\mingw64\bin\git.EXE ls-remote -h -t https://github.com/nhn/raphael.git                                                 
npm ERR!
npm ERR! fatal: unable to access 'https://github.com/nhn/raphael.git/': OpenSSL SSL_read: Connection was _read: Connection was reset, errno 10054
npm ERR!
npm ERR! exited with error code: 128
...

你可能感兴趣的:(npm install 报错 10054)