Lightweight async Array-forEach-method.
npm install asyncforeach> Lightweight async Array-forEach-method.
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.
``js
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) // null
console.log(res) // [ {'one': 'one'}, {'two': 'two'} ]
// order is guaranteed
})
`
or with an error:
`js
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) // err instanceof Error -> true
console.log(res) // undefined
})
`
> countless
* aysncPromise
*
(WIP)
MIT`