问题
D:\APP\gui>npm install --save-dev electron
npm ERR! code 1
npm ERR! path D:\APP\gui\node_modules\electron
npm ERR! command failed
npm ERR! command C:\WINDOWS\system32\cmd.exe /d /s /c node install.js
npm ERR! RequestError: read ECONNRESET
npm ERR! at ClientRequest. (D:\APP\gui\node_modules\got\source\request-as-event-emitt
er.js:178:14)
npm ERR! at Object.onceWrapper (node:events:510:26)
npm ERR! at ClientRequest.emit (node:events:402:35)
npm ERR! at ClientRequest.origin.emit (D:\APP\gui\node_modules\@szmarczak\http-timer\source\inde
x.js:37:11)
npm ERR! at TLSSocket.socketErrorListener (node:_http_client:447:9)
npm ERR! at TLSSocket.emit (node:events:390:28)
npm ERR! at emitErrorNT (node:internal/streams/destroy:157:8)
npm ERR! at emitErrorCloseNT (node:internal/streams/destroy:122:3)
npm ERR! at processTicksAndRejections (node:internal/process/task_queues:83:21)
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\LittleMonkey\AppData\Local\npm-cache\_logs\2021-11-18T13_53_32_168Z-debug.log
D:\APP\gui>npm install --save-dev electron
npm ERR! code 3221225786
npm ERR! path D:\APP\gui\node_modules\electron
npm ERR! command failed
npm ERR! command C:\WINDOWS\system32\cmd.exe /d /s /c node install.js
npm ERR! ^C
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\LittleMonkey\AppData\Local\npm-cache\_logs\2021-11-18T14_10_20_232Z-debug.log
解决方法
设置ELECTRON_MIRROR地址
npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/
安装
npm install --save-dev electron
评论区