stact

0.0.12 • Public • Published

stact

Manage a sorted stack of functions and execute them with flow control.

build status

Yummy

Example

Imagine you want to validate a model before saving it. Your validation handlers could be built up as a stack.

var validators = require('stact')();
 
var model = {
  id: 'E48Hy',
  email: '123@abc.com',
  name: 'Brian',
  color: '#2233ff'
};
 
// Email is required.
validators.add(function (model, next) {
  if (!model.email) {
    return next(new Error('Email is required'));
  }
  next();
});
 
// Lookup name in a DB and verify it.
validators.add(function (model, next) {
  myDB.findName(model.id, function (err, name) {
    if (err) return next(err);
    if (model.name !== name) {
      return next(new Error('Name does not match our records'));
    }
    next();
  });
});
 
// Color should be a valid hex color.
validators.add(function (model, next) {
  if (!/^#[0-9a-fA-F]{6}$/.test(model.color)) {
    return next(new Error('Not a valid color'));
  }
  next();
});
 
// Run the validators (in parallel).
validators.run(model, function (err) {
  if (err) // Handle the error.
  myDB.save(model, function (err) {
    // Model now saved.
  });
});

API

Create a stact

This module exports a single factory function for creating stact stacks. It is called like:

var createStact = require('stact');
var stack = createStact(options);

options

  • All stac options are supported.
  • func - If set, every item in the stack will run with this function. See Example
  • funcProp - If set, stact will assume that items are objects and that the function to run will be found under this property.
  • getFunc - If set, stact will call this function for each item, passing the item to it. It should return the function to run for the item.

Add functions to the stack

Add functions to the stack using the API of stac.

The last argument of the function MUST always be a continuation callback.

stack.add(function (next) {
  // Do stuff.
 
  // There was an error ...
  next(new Error('Oops!'));
 
  // ... or if no error ...
  next();
});

All of stac's API is supported ...

... such as weighting your stack:

stack.add(300, function () { /* ... */ });
stack.add(100, function () { /* ... */ });
stack.add(500, function () { /* ... */ });

... or prioritizing with first() and last():

stack.add(function () { /* ... */});
stack.add(function () { /* ... */});
 
stack.first(function () { /* ... */});
stack.first(function () { /* ... */});
 
stack.last(function () { /* ... */});

Create a stack that revolves around one function.

In some cases you want to call the same function multiple times with different information.

var createStact = require('stact');
var stack = createStact(function (prefix, next)
  // `this` will be the current item being processed.
  next(null, prefix + this);
});
 
stack.add('Brian');
stack.add('Joe');
stack.add('Mary');
 
stack.runSeries('Name: ', function (err, results) {
  console.log(results);
  // [ 'Name: Brian', 'Name: Joe', 'Name: 'Mary' ]
});

stack.run ( [arguments ...], callback )

Run the stack (in parallel), passing arbitray arguments to the functions. Results will be in sorted stack order.

Any error will cause the provided callback to be immediately invoked with the error, but other asychronous callbacks may continue to run in the background. Your callback will only be called once.

stack.run(arg1, arg2, function (err, results) {
  // Handle error or the results.
});

stack.runSeries ( [arguments ...], callback )

Run the stack in series, passing arbitrary arguments to the functions. Results will be in sorted stack order.

Any error will cause the run to immediately end, invoking the provided callback with the error.

stack.runSeries(arg1, arg2, arg3, function (err, results) {
  // Handle error or the results.
});

stack.runWaterfall ( [arguments ...], callback )

Run the stack in a 'waterfall'. In this mode each function in the stack will be calling the next function in the stack, with the last stack item calling the final callback provided in the stack.runWaterfall() call.

The arguments can change at any-time, but the most common use-case is probably passing one argument that is being modified by the stack, and other arguments providing supplementary data.

Any error will cause the run to immediately end, invoking the provided callback with the error.

Example with changing arguments

stack.add(function (next) {
  next(null, 'one', 'two');
});
 
stack.add(function (arg1, arg2, next) {
  // arg1 is 'one'
  // arg2 is 'two'
  next(null, 'three');
});
 
stack.add(function (arg1, next) {
  // arg1 is 'three'
  next(null, 'done');
});
 
stack.runWaterfall(function (err, result) {
  // result now equals 'done'
});

Example passing along something to be modified

stack.add(function (result, spacer, next) {
  next(null, result + 'Foo' + spacer, spacer);
});
 
stack.add(function (result, spacer, next) {
  next(null, result + 'Bar' + spacer, spacer);
});
 
stack.add(function (result, spacer, next) {
  next(null, result + 'Baz' + spacer, spacer);
});
 
stack.runWaterfall('Result: ', ' - ', function (err, result) {
  // result is now 'Result: Foo - Bar - Baz - '
});

Developed by Terra Eclipse

Terra Eclipse, Inc. is a nationally recognized political technology and strategy firm located in Aptos, CA and Washington, D.C.


License: MIT

Copyright (C) 2013 Terra Eclipse, Inc. (http://www.terraeclipse.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i stact

Weekly Downloads

257

Version

0.0.12

License

MIT

Last publish

Collaborators

  • cpsubrian