Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Last active May 15, 2018 14:18
Show Gist options
  • Save shlomisas/45e2b2683bd9dfdc5043633e80815559 to your computer and use it in GitHub Desktop.
Save shlomisas/45e2b2683bd9dfdc5043633e80815559 to your computer and use it in GitHub Desktop.
js-express-app-route-error-handling
app.get('/', async(req, res, next) => {
try {
const model = await Model.findById(req.params.id);
res.json(model);
} catch (e) {
next(e);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment