Skip to content

Instantly share code, notes, and snippets.

@jdx
Last active October 11, 2015 23:03
Show Gist options
  • Save jdx/a1105ca8c483c836e51e to your computer and use it in GitHub Desktop.
Save jdx/a1105ca8c483c836e51e to your computer and use it in GitHub Desktop.
express example
app.get('/user/:id', function (req, res) {
db.get(req.params.userId, function (err, user) {
if (err) throw err;
res.json(user);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment