Last active
August 29, 2015 14:20
-
-
Save flockonus/f0856eeef7a47327e420 to your computer and use it in GitHub Desktop.
Express get lost in co() context --WRONG
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
var express = require('express'); | |
var app = express(); | |
var co = require('co'); | |
function * sleep(){ | |
var p = new Promise(function(w,f){ | |
setTimeout(w,1000,'winning'); | |
}); | |
return yield p; | |
} | |
app.get('/',function(req,res) { | |
co(function*(){ | |
console.log('inside co'); | |
var val = yield sleep(); | |
console.log('sleep done', val); | |
res.send(val); | |
console.log('it does reach here.'); | |
}) | |
}); | |
module.exports = app; | |
var port = process.env.PORT || 4000; | |
app.listen(port); | |
console.log('Express view app listening on port ' + port); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment