pipedream-js

0.1.0 • Public • Published

Pipedream

A function composition pipeline. Use it to progressively transform a resource into its final form.

How to use it

Simple example

Pipedream only exposes a single function, used to compose other functions:

var assembe = require('pipedream-js');
 
var fn1 = function() {
  //...
};
 
var fn2 = function() {
  //...
};
 
var fn3 = function() {
  //...
};
 
var handler = assemble(fn1, fn2, fn3);

Async operations

In order to support async operations, it uses the Q library to return a promise:

var handler = assemble(fn1, fn2, fn3);
 
handler()
  .then(function() {
    // All composed functions have returned successfully!
  })
  .fail(function(error) {
    // One of the functions failed while processing.
    // Look into the error return to find out more.
  });

Flow control

In the signature of any composed function, you can include the special $yield and $fail arguments. These are injected automatically using Syringe. You can use these functions to yield to the next function to the pipeline or introduce a failure state in the chain.

// A composed function
var fn1 = function($yield, $fail) {
  someOperation(function(err) {
    if (!err) {
      $yield();
    } else {
      $fail('someOperation failed miserably :(');
    }
  });
};

The result object

At the beginning of the pipeline an empty object is injected and assigned to the special $res parameter. Your functions may then require this parameter in their signatures and mutate it how they see fit. When a function yields by calling $yield the $res object is passed as it is to the next function in the pipeline.

// Some composed functions
var fn1 = function($res, $yield, $fail) {
  someOperation(function(result, err) {
    if (!err) {
      $res = result;
      $yield();
    } else {
      $fail('someOperation failed miserably :(');
    }
  });
};
 
var fn2 = function($res) {
  // The value of $res is equal to the last assignment to it in fn1, result.
};

Parameter injection

The result of calling Pipedream with a set of functions is a function itself. Any parameters you pass when you call this function are automatically injected into every function of the pipeline. Refer to Syringe's documentation to find out more about how to inject parameters.

In this example, a parameter named foo will be made to every function that requests it and hold a value of bar.

var assembe = require('pipedream-js');
var handler = assemble(fn1, fn2, fn3);
 
handler({
  foo: 'bar'
});

Contributing

Bug fixes and new features are of course very welcome!

To get started developing:

  • Install Grunt
  • Install dependencies with npm install
  • Run the test suite with npm test

Please accompany any Pull Requests with the relevant test cases and make sure everything else still passes :).

Credits

Shout out to @inf0rmer and @agravem.

Readme

Keywords

none

Package Sidebar

Install

npm i pipedream-js

Weekly Downloads

0

Version

0.1.0

License

BSD

Last publish

Collaborators

  • inf0rmer