Skip to content

Instantly share code, notes, and snippets.

@oklai
oklai / app.js
Created December 31, 2014 03:47
Koa "yield next" simple implement
'use strict';
var co = require('co');
function App () {
this.gens = [];
}
App.prototype.use = function (gen) {
this.gens.push(gen);