palinode
v1.0.0
Published
node callback-based flow control utility library
Downloads
162
Maintainers
Readme
palinode
NodeJS callback-based flow control utility library. Palinode focuses on a pure, dependency free, no-frills, native javascript implementation. Palinode is intentionally not compatible with browsers; it is intended for NodeJS only.
palinode (noun): a poem in which the poet retracts a view or sentiment expressed in a former poem. - source: Google.
Installation
npm install palinode
Test
npm run test
Coverage
npm run cover-html
Setup
const theFunctionToUse = require(`palinode`).theFunctionYouWant
Callback Pattern Expectations
As with the vast majority of native node libraries, all callbacks are by convention expected to be in the form:
function(error [, param1, param2, param3...]) {}
- A callback invoked with a falsy value in the 0th parameter position indicates that caller was successful.
- A callback invoked with a truthy value in the 0th parameter position indicates the error encountered by the caller.
- As a best practice, errors provided as the 0th parameter should be an instance of the
Error
prototype. - Parameters in the 1st-nth positions contain successful response information, if any.
Supported methods
Series
Runs a series of functions. Each function calls back to the next. Any parameters passed to a callback are spread into the subsequent function call. The provided array of functions is not mutated.
Example usage
var series = require('palinode').series;
var numToAddEachTime = 5;
function add(a, b, callback) {
callback(null, a + b, numToAddEachTime);
}
var functions = [
add.bind(null, 0, 0),
add,
add,
add
];
series(functions, function(error, result) {
console.log(result);
//outputs: 15
});
Map Each
Runs a single function against each member of an array, invoking a callback when complete or when an error occurs during execution. If successful for each item in the input array, the result provided to the callback will be a new array containing the mapped values. If an error occurs, no data will be returned in the callback result. The input array is not mutated.
Example usage
var mapEach = require('palinode').mapEach;
var inputArray = [1,2,3,4,5,6,7,8,9,10];
function square(input, callback) {
return callback(null, input * input);
}
mapEach(inputArray, square, function(error, result) {
console.log(result);
//outputs: [1,4,9,16,25,36,49,64,81,100]
});
Concurrent
- Schedules each function to be executed on the next tick.
- Invokes a callback when all have been successful, or if any function calls back with error.
- If any error occurs, all outstanding callbacks will have no effect.
- If any error occurs, the result will be undefined - partial results are not provided.
- Results are accumulated into an array, where the position of each result corresponds to the position of the function.
- The array of task functions is not mutated.
Input function callback expectations
All functions are expected to accept a callback in the form:
function(error, result) {}
Any parameters passed after result
are ignored.
Example usage
var concurrent = require('palinode').concurrent;
function taskOfRandomDuration(number, callback) {
setTimeout(function() {
callback(null, number * number);
}, Math.floor((Math.random() * 3000) + 250));
}
var tasks = [
taskOfRandomDuration.bind(null, 2),
taskOfRandomDuration.bind(null, 4),
taskOfRandomDuration.bind(null, 8),
];
concurrent(tasks, function(err, res) {
console.log(res);
//outputs: [4, 16, 64]
});
MapConcurrent
- Binds each input item to the provided function.
- Schedules all bound functions to be executed on next tick.
- Calls the callback when all functions have completed, or if any callback with error.
- If any error occurs, all outstanding callbacks will have no effect.
- If any error occurs, the result will be undefined - partial results are not provided.
- Results are accumulated into an array, where the position of each result corresponds to the position of the input item.
- Does not mutate the input array.
Function expectations
Input functions are expected expected to have a signature:
function(inputItem, callback) {}
The function to run is expected to accept a callback in the form:
function(error, result) {}
Example usage
var mapConcurrent = require('palinode').mapConcurrent;
function squareWithDelay(number, callback) {
setTimeout(function() {
callback(null, number * number);
}, Math.floor((Math.random() * 1500) + 150));
}
var inputItems = [1, 2, 3, 4, 5];
mapConcurrent(inputItems, squareWithDelay, function(err, res) {
console.log(res);
//outputs: [1, 4, 9, 16, 25]
});
ConcurrentAll/MapConcurrentAll
- Follows the same pattern as the non-all counterparts
- Attempts ALL functions
- Retains all result information, including errors
- Calls back with a count of errors.
mapConcurrentAll Example
var mapConcurrentAll = require('./lib/map-concurrent-all.js').mapConcurrentAll;
var inputs = [1, 2];
function iteratee(input, callback) {
if(input === 2) {
callback(new Error('2'));
} else {
callback(null, input)
}
}
mapConcurrentAll(inputs, iteratee, function(error, result){
console.log('NumErrors: ' + error);
console.log('Results: ' + JSON.stringify(result));
});
/*
NumErrors: 1
Results: [{
"error": null,
"result": 1
}, {
"error": {},
"result": null
}]
*/