asyncforeach

Lightweight async Array-forEach-method.
Description
In a microservice world, you want to fire requests in parallel and act on all of
their returns. This can be done very barebones with this tiny module.
For better support and lifetime handling, as well as a better API go to Steed.
Example
const arr = []
arr.push(function one (task, index, array, cb) {
process.nextTick(() => {
return cb(null, {'one': 'one'})
})
})
arr.push(function two (task, index, array, cb) {
console.log('calling two')
setTimeout(function () {
return cb(null, {'two': 'two'})
}, 1000)
})
asyncForEach(arr, (err, res) => {
console.log(err)
console.log(res)
})
or with an error:
const arr = []
arr.push(function one (task, index, array, cb) {
process.nextTick(() => {
return cb(new Error('Simple Error'), {'one': 'one'})
})
})
arr.push(function two (task, index, array, cb) {
console.log('calling two')
setTimeout(function () {
return cb(new Error(), {'two': 'two'})
}, 1000)
})
asyncForEach(arr, (err, res) => {
console.log(err)
console.log(res)
})
Prior Art
countless
(WIP)
License
MIT