0.1.1 • Published 11 years ago

yaflow v0.1.1

Weekly downloads
13
License
-
Repository
-
Last release
11 years ago

Build Status Dependency Status

About

yaflow is yet another flow control module for Node.js.

Usage

var flow = require('yaflow').create();

flow.use(function (req, res, next) {
  process.nextTick(function () {
	next();
  });
});

flow.use(function (req, res, next) {
  // ...
});

flow.execute(req, res);

License

MIT

0.1.1

11 years ago

0.1.0

11 years ago

0.0.1

11 years ago