Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems like error reporting/handling is done differently in NodeJS+Express apps compared to other frameworks. Am I correct in understanding that it works as follows?

A) detect errors by receiving them as parameters to your callback functions. For example:

doSomethingAndRunCallback(function(err) { 
 if(err) { … }
});

B) report errors in MIDDLEWARE by calling next(err). Example:

handleRequest(req, res, next) {
  // an error occurs…
  next(err);
}

C) report errors in ROUTES by throwing the error. Example:

app.get('/home', function(req, res){
    // an error occurs
    throw err;
});

D) handle errors by configuring your own error handler via app.error() or use the generic Connect error handler. Example:

app.error(function(err, req, res, next){
    console.error(err);
    res.send('Fail Whale, yo.');
});

Are these four principles the basis for all error handling/reporting in NodeJS+Express apps? Thanks!

share|improve this question

1 Answer

up vote 81 down vote accepted

Error handling in node is generally of the format A). Most callbacks return an error object as the first argument or null.

Express uses middleware and the middleware syntax uses B) and E) (mentioned below).

C) is bad practice if you ask me.

app.get('/home', function(req, res){
    // an error occurs
    throw err;
});

You can easily rewrite the above as

app.get('/home', function(req, res, next){
    // an error occurs
    next(err);
});

Middleware syntax is valid in a get request.

As for D)

(07:26:37 PM) tjholowaychuk: app.error is removed in 3.x

TJ just confirmed that app.error is deprecated in favor of E

E)

app.use(function(err, req, res, next) {
  // only handle `next(err)` calls
});

Any middleware that has a length of 4 (4 arguments) is considered error middleware. When one calls next(err) connect goes and calls error based middleware.

share|improve this answer
3  
Thanks! For anyone who might come across this in the future, it looks like the order of params for "method e" is actually err, req, res, next (instead of req, res, next, err). – Clint Harris Aug 22 '11 at 22:30
@ClintHarris you are correct, I've changed it. It makes more sense that way – Raynos Aug 22 '11 at 22:41
Thanks I was looking exactly for this! – Alberto Zaccagni Mar 7 '12 at 14:22
5  
So this looks great, but a problem I'm seeing is that some errors never make their way to the error handlers you describe, and can only be caught by a process.on('uncaughtException', fn) handler. The conventional wisdom is to let that happen and rely on Forever or the like to restart the app, but if you do that, how do you return a friendly error page? – Paul Apr 18 '12 at 17:29
i tried E but my app still crashed. It was from a user.save() operation that had a duplciate key. It was supposed to render error.ejs – chovy Sep 23 '12 at 8:38
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.