Last active
October 16, 2015 14:28
-
-
Save jdx/bec9494a3718afa8744c to your computer and use it in GitHub Desktop.
koa 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', 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