如何解决 process.nextTick 错误?
我正在使用 node.js 构建 TCP 服务器,但出现以下错误。怎么解决这个问题呢?
node.js:134
throw e; // process.nextTick error, or 'error' event on first tick
^
Error: ETIMEDOUT, Connection timed out
at Socket._readImpl (net.js:163:14)
at Socket._onReadable (net.js:631:22)
at IOWatcher.onReadable [as callback] (net.js:177:10)
I am using node.js to build a TCP server and I got the following errors. How to solve this?
node.js:134
throw e; // process.nextTick error, or 'error' event on first tick
^
Error: ETIMEDOUT, Connection timed out
at Socket._readImpl (net.js:163:14)
at Socket._onReadable (net.js:631:22)
at IOWatcher.onReadable [as callback] (net.js:177:10)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在您创建的 TCP 服务器上处理“错误”事件。所有未处理的“错误”事件都会导致 Node.js 上出现未处理的异常
Try handling the 'error' event on the TCP server you created. All unhandled 'error' events cause an unhandled exception on node.js