unt

v0.0.5
Expressive middleware for stream programming using generators
soa stream reactive nsq

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

npm i unt

Metadata

  • MIT
  • >=v0.11.9
  • Hao-kang Den
  • released 5/20/2014

Downloads

Maintainers