Skip to content

Instantly share code, notes, and snippets.

@jimdel
Last active February 1, 2018 04:33
Show Gist options
  • Save jimdel/3a94c85d3259b70241791f40b794f3c6 to your computer and use it in GitHub Desktop.
Save jimdel/3a94c85d3259b70241791f40b794f3c6 to your computer and use it in GitHub Desktop.
app.use((err, req, res, next) => {
console.error(err)
console.error(err.stack)
res.status(err.status || 500).send(err.message || 'Internal server error: this is the bottom of the middleware error stack.')
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment