linked
v0.2.0
Published
tiny middleware framework
Downloads
6
Readme
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