1.0.0 • Published 7 years ago

koa-rt v1.0.0

Weekly downloads
79
License
MIT
Repository
github
Last release
7 years ago

koa-rt

Build Status

koa rt. can be custom with microtime.

Usage

var koa = require('koa');
var rt = require('koa-rt');
var app = koa();

app.use(rt());

app.use(function *(next){
  yield sleep(150);
  this.body = 'Hello';
});

function sleep(ms) {
  return function(done){
    setTimeout(done, ms);
  };
}

app.listen(7001);

console.log('listening on port 7001');

License

MIT