0.1.4 • Published 9 years ago

basic-pipeline v0.1.4

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

basic-pipeline

A basic pipeline module for node and the web

Installation

NPM

$ npm install basic-pipeline --save

Bower

$ bower install basic-pipeline --save

Usage

Add steps to a pipeline with use. Then execute those steps in order with execute.

var Pipeline = require("basic-pipeline");

var pipeline = new Pipeline();

pipeline.use(function (context, next) {
    context.foo = "bar";

    next();
});

pipeline.use(function (context, next) {
    context.bar = "baz";

    next();
});

pipeline.use(function (context, next) {
    context.theAnswerIs = "42";

    next();
});

pipeline.execute({}, function (err, context) {
    console.log(context);
});

//context => { foo: 'bar', bar: 'baz', theAnswerIs: '42' }
0.1.4

9 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago