Last active
May 15, 2018 14:18
-
-
Save shlomisas/ad5b2265166182fb55cf36be3c592054 to your computer and use it in GitHub Desktop.
js-express-app-route-example
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('/user/:id', async(req, res) => { | |
const user = await User.findById(req.params.id); | |
if (!user) { | |
const e = new Error('User not found'); | |
e.status = 404; | |
throw e; | |
} | |
res.json(user); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment