run-concurrent
v1.0.1
Published
Run an array of functions concurrently, with a maximum of active tasks
Downloads
1
Maintainers
Readme
run-concurrent
Run an array of functions concurrently, with a maximum of active tasks
install
npm install run-concurrent
Kudos
This is basically a fork of run-parallel by feross with added limit
usage
concurrent(limit, tasks, [callback])
Run the tasks
array of functions concurrently, 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.
It is also possible to use an object instead of an array. Each property will be run as a
function and the results will be passed to the final callback
as an object instead of
an array. This can be a more readable way of handling the results.
arguments
limit
- The maximum number of tasks to run at any time.tasks
- An array or object containing functions to run. Each function is passed acallback(err, result)
which it must call on completion with an errorerr
(which can benull
) and an optionalresult
value.callback(err, results)
- An optional callback to run once all the functions have completed. This function gets a results array (or object) containing all the result arguments passed to the task callbacks.
example
var concurrent = require('run-concurrent')
// run at most 2 things simultaneously
concurrent(2, [
function (callback) {
setTimeout(function () {
callback(null, 'one')
}, 200)
},
function (callback) {
setTimeout(function () {
callback(null, 'two')
}, 100)
},
function (callback) {
setTimeout(function () {
callback(null, 'three')
}, 300)
}
],
// optional callback
function (err, results) {
// the results array will equal ['one','two','three'] even though
// the second function had a shorter timeout.
})
This module is basically equavalent to
async.parallelLimit
, but it's
handy to just have the one function you need instead of the kitchen sink. Modularity!
Especially handy if you're serving to the browser and need to reduce your javascript
bundle size.
Works great in the browser with browserify!
see also
license
MIT. Copyright (c) David Björklund & Feross Aboukhadijeh.