express handle after everything else code example
Example 1: express error handling
app.use(function (err, req, res, next) {
console.error(err.stack)
res.status(500).send('Something broke!')
})
Example 2: error handler
function handlerError(request, response){
response.status(500).send('opps');
}
.catch(handlerError);
Example 3: express generator error handling
app.get('/', function (req, res) {
throw new Error('BROKEN') // Express will catch this on its own.
})