本文介绍了如何捕获像 EADDRINUSE 这样的 node.js/express 服务器错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是我的代码.
if !module.parent尝试hons_server.listen config.portconsole.log '监听端口' + config.port抓错console.error "无法启动服务器:#{String(err)}".red
hons_server
是一个 express.js 服务器.我很难理解为什么由于 hons_server.listen()
而引发的错误没有被 try/catch 捕获.当我运行我的服务器两次时,我得到了输出:
我想知道为什么没有捕获到抛出的错误,以及如何/在何处捕获 EADDRINUSE 错误.
解决方案
在服务器上监听 error
事件
hons_server.on 'error', (err) ->console.log '有一个错误:', err.message
This is my code.
if !module.parent
try
hons_server.listen config.port
console.log 'Listening to port ' + config.port
catch err
console.error "Couldn't start server: #{String(err)}".red
hons_server
is an express.js server. I'm having a hard time understanding why errors thrown as a result of hons_server.listen()
aren't caught by the try/catch. When I run my server twice I get the output:
$ coffee src/server.coffee Listening to port 9090 node.js:201 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: listen EADDRINUSE at errnoException (net.js:632:11) at Array.0 (net.js:733:26) at EventEmitter._tickCallback (node.js:192:40)
I'd like to know why the thrown error isn't caught, and how/where I can catch the EADDRINUSE error.
解决方案
Listen for the error
event on the server isntance
hons_server.on 'error', (err) ->
console.log 'there was an error:', err.message
这篇关于如何捕获像 EADDRINUSE 这样的 node.js/express 服务器错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!