Skip to content

Instantly share code, notes, and snippets.

@jdx
Last active October 16, 2015 14:28
Show Gist options
  • Save jdx/bec9494a3718afa8744c to your computer and use it in GitHub Desktop.
Save jdx/bec9494a3718afa8744c to your computer and use it in GitHub Desktop.
koa example
app.get('/user/:id', function* (id) {
let user = yield db.get(id);
res.json(user);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment