Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Last active May 15, 2018 14:18
Show Gist options
  • Save shlomisas/ad5b2265166182fb55cf36be3c592054 to your computer and use it in GitHub Desktop.
Save shlomisas/ad5b2265166182fb55cf36be3c592054 to your computer and use it in GitHub Desktop.
js-express-app-route-example
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