Last active
May 15, 2018 14:18
-
-
Save shlomisas/45e2b2683bd9dfdc5043633e80815559 to your computer and use it in GitHub Desktop.
js-express-app-route-error-handling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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