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!