unt

0.0.5 • Public • Published

unt

Expressive middleware for stream programming using generators Mostly inspired by koa-compose

Installation

npm install unt

Example

var unit = require('unt');
var app  = unit();


app.use(function *(next){
  var start = new Date;
  yield next;
  this.result.ms = new Date - start;
});


app.use(function *(){
  this.result.foo = 'bar';
});

// input = stream or nsq or kinesis
app.listen(input)

Running tests

npm test

Licence

MIT

/unt/

    Package Sidebar

    Install

    npm i unt

    Weekly Downloads

    6

    Version

    0.0.5

    License

    MIT

    Last publish

    Collaborators

    • hden