npm.io
0.2.0 • Published 12 years ago

linked

Licence
MIT
Version
0.2.0
Deps
0
Vulns
0
Weekly
0
Stars
1

linked

Installation

$ npm install linked

Usage

var linked = require('linked');
var app = linked();
app.use(function (ctx, next) {
  // step 1
  next();
}, function (ctx, next) {
  // step 2
  next();
}, function (ctx, next) {
  next();
});
// start execute.
app();
// or
app.go();

License

The MIT License