Asynchronous tools
Set of methods to synchronize asynchronous operations.
Installation
npm install cjs-async
Usage
parallel
Run the tasks array of functions in parallel, without waiting until the previous function has completed.
If any of the functions pass an error to its callback, the main callback is immediately called with the value of the error.
Once the tasks have completed, the results are passed to the final callback as an array and hash.
Task function name is used to name the corresponding hash-table values.
Task function can either use callback to specify error and result value or return result value immediately.
Online example:
var parallel = require('cjs-async/parallel'),
taskList = [
function ( callback ) {
setTimeout(function () {
callback(null, true);
}, 10);
},
function ( callback ) {
setTimeout(function () {
callback(null, 256);
}, 20);
},
function ( callback ) {
setTimeout(function () {
callback(null, '512');
}, 0);
},
function () {
return 32;
}
];
parallel(taskList, function ( error, results ) {
if ( !error ) {
console.log(results);
}
});
serial
Run the functions in the tasks array in series, each one running once the previous function has completed.
If any functions in the series pass an error to its callback, no more functions are run,
and callback is immediately called with the value of the error.
Otherwise, callback receives an array and hash of results when tasks have completed.
Task function name is used to name the corresponding hash-table values.
Task function can either use callback to specify error and result value or return result value immediately.
Online example:
var serial = require('cjs-async/serial'),
taskList = [
function () {
return 32;
},
function ( callback ) {
setTimeout(function () {
callback(null, true);
}, 10);
},
function ( callback ) {
setTimeout(function () {
callback(null, 256);
}, 20);
},
function ( callback ) {
setTimeout(function () {
callback(null, '512');
}, 0);
}
];
serial(taskList, function ( error, results ) {
if ( !error ) {
console.log(results);
}
});
Contribution
If you have any problems or suggestions please open an issue
according to the contribution rules.
License
cjs-async
is released under the MIT License.