yaflow

0.1.1 • Public • Published

Build Status Coverage 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, stop) {
  process.nextTick(function () {
    next();
  });
});
 
flow.use(function (req, res, next, stop) {
  // ...
});
 
flow.execute(req, res, function () {
  console.log(res);
});
 

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i yaflow

Weekly Downloads

0

Version

0.1.1

License

none

Last publish

Collaborators

  • aleafs