Skip to content

Instantly share code, notes, and snippets.

@jdx
Created October 16, 2015 00:26
Show Gist options
  • Save jdx/b21761360e431ed178b1 to your computer and use it in GitHub Desktop.
Save jdx/b21761360e431ed178b1 to your computer and use it in GitHub Desktop.
app.get('/user/:id', function (req, res, next) {
db.get(req.params.id, function (err, user) {
if (err) return next(err);
res.json(user);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment