Package Exports
- pipeworks
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pipeworks) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
pipeworks
Create pipes. Fit 'em together. Start the flow!
With pipeworks, you can:
- Fit components into execution pipelines.
- Siphon the flow into branches during execution.
- Join multiple pipelines together.
Example
var pipeworks = require('pipeworks');
pipeworks()
.fit(function(context, next) {
next(context.replace(/hot dogs/, 'tofu rolls'));
})
.fit(function(context, next) {
next(context.replace(/o/g, '0')
.replace(/e/g, '3')
.replace(/a/g, '4')
.replace(/l/g, '1')
.replace(/!/, '!!11~!11!')
.toUpperCase());
})
.fit(function(context, next) {
console.log(context);
next(context);
})
.flow('i bet i could eat more hot dogs than anyone!');
// Output:
// I B3T I C0U1D 34T M0R3 T0FU R011S TH4N 4NY0N3!!11~!11!Install
$ npm install pipeworksUsage
initialize
Start by initializing a pipeline.
var pipeworks = require('pipeworks');
var pipeline = pipeworks();pipes
Pipes are the modular component of pipeworks. Fit pipes together to form a pipeline.
They have the following signature: function([arguments], next). Pipes can take any number of arguments you wish to pass. However, it's common to use a single context variable as a record to pass state between steps in the execution pipeline. The last parameter passed to a pipe is a reference to the next function in the pipeline. Pipes should always end with a call to next([arguments]).
See below.
var pipe = function(context, next) {
context.scores = [25.0, 17.0, 14.7];
next(context);
};pipeline.fit([options], pipe)
Add a pipe to the pipeline.
options.affinity - Either hoist or sink. Adds to the pre and post queues, respectively. Ensures a pipe gets fitted before or after the main execution pipeline.
The effect of setting the pipeline affinity to 'hoist':
pipeworks()
.fit(function(context, next) {
console.log('Cal Naughton, Jr: Shake and bake!');
next(context);
})
.fit({ affinity: 'hoist' }, function(context, next) {
console.log('Ricky Bobby: If you ain\'t first, you\'re last!');
next(context);
})
.flow({});
// Output:
// Ricky Bobby: If you ain't first, you're last!
// Cal Naughton, Jr: Shake and bake!pipeline.siphon([arguments], next)
Redirect the flow to another pipeline.
var hijacker = pipeworks();
var main = pipeworks();
hijacker
.fit(function(context, next) {
context.hijacked = true;
console.log('hijacked!');
next(context);
});
main
.fit(function(context, next) {
console.log('getting started');
next(context);
})
.fit(function(context, next) {
console.log('am i getting hijacked?');
hijacker.siphon(context, next);
})
.fit(function(context, next) {
console.log('done-zo');
next(context);
});
main.flow({});
// Output:
// getting started
// am i getting hijacked?
// hijacked!
// done-zopipeline.join(pipeline)
Link pipelines together.
var first = pipeworks();
var second = pipeworks();
var third = pipeworks();
first
.fit(function(context, next) {
console.log('alpha');
next(context);
})
.fit(function(context, next) {
console.log('atlanta');
next(context);
});
second
.fit(function(context, next) {
console.log('beta');
next(context);
})
.fit(function(context, next) {
console.log('boise');
next(context);
});
third
.fit(function(context, next) {
console.log('gamma');
next(context);
})
.fit(function(context, next) {
console.log('georgetown');
next(context);
});
first.join(second).join(third).flow({});
// Output:
// alpha
// atlanta
// beta
// boise
// gamma
// georgetownpipeline.flow([arguments])
Send something down the pipeline! Any number of arguments can be sent, but often there's just a single context object.
pipeworks()
.fit(function(context, next) {
context.age = 30;
next(context);
})
.fit(function(context, next) {
console.log(context);
next(context);
})
.flow({ name: 'Kevin' });
// Output:
// { name: 'Kevin', age: 30 }Enjoy!
License
MIT

