Skip to content

Instantly share code, notes, and snippets.

@Daniel1984
Created January 10, 2021 15:40
Show Gist options
  • Save Daniel1984/b48532284e710439e2177a92986658ee to your computer and use it in GitHub Desktop.
Save Daniel1984/b48532284e710439e2177a92986658ee to your computer and use it in GitHub Desktop.
// app.js
app.use((err, req, res, next) => {
console.error(err);
res.status(err.status || 500).json({
message: err.message,
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment