2

我目前正在处理一个Ionic 3项目,当我这样做时ionic serve,项目运行但在第一次加载ionic serve停靠点后出现以下错误:

(节点:487)UnhandledPromiseRejectionWarning:未处理的承诺拒绝(拒绝ID:1):错误[ERR_IPC_CHANNEL_CLOSED]:通道关闭(节点:487)[DEP0018] DeprecationWarning:不推荐使用未处理的承诺拒绝。将来,未处理的 Promise 拒绝将使用非零退出代码终止 Node.js 进程。

有时还有一个错误:

[10:03:47] lint 在 18.51 秒 events.js:182 throw er 中完成;// 未处理的“错误”事件 ^

错误:在 TCP.onread (net.js:607:25) 处的 exports._errnoException (util.js:1026:11) 处读取 ECONNRESET

我的 npm 版本是5.6.0

更新:考虑到这个问题,我考虑将我的 npm 版本降级到 5.2,但错误仍然存​​在

4

1 回答 1

3

I fixed the issue somehow.Don't know what solved it but here are my step.

First removed node modules folder using package-lock.json file.

remove ./node_modules/ws folder
run $ npm install ws@3.3.2

This issue helped me this may be a temporary solution but hope it helps. A short note: I had already downgraded my npm so that might be a requirement as well

于 2017-12-20T05:46:39.433 回答