Skip to content

Instantly share code, notes, and snippets.

@flockonus
Last active August 29, 2015 14:20
Show Gist options
  • Save flockonus/f0856eeef7a47327e420 to your computer and use it in GitHub Desktop.
Save flockonus/f0856eeef7a47327e420 to your computer and use it in GitHub Desktop.
Express get lost in co() context --WRONG
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