tubing
v0.1.2
Published
Tubing in a modular socket library that uses the same client/server code regardless of transport.
Downloads
14
Readme
tubing
Simple Pielines
Installation
npm install tubing
Usage
var tubing = require('tubing');
function readFile(cmd, done) {
require('fs').readFile(cmd.path, function(err, data) {
if (err) return done(err);
cmd.content = data;
done();
});
}
function removeNewLines(cmd, done) {
cmd.content = cmd.content.replace(/\n/g, '');
done()
}
var TestPipeline = tubing.pipeline('Test Pipeline')
.then(readFile)
.then(removeNewLines);
var loggingSink = tubing.sink(function(err, cmd) {
if (err) return console.log(err.stack);
console.log(cmd);
});
var pipeline = TestPipeline.configure().publish_to(loggingSink);
pipeline.push({path: '/tmp/foo.txt'});
License
Copyright (c) 2013 Matt Insler Licensed under the MIT license.