Cooperative threading versions of map, filter, forEach, etc, suitable for big processing in single-threaded Node.js.
One of the gotchas with Node.js is that it's single-threaded. Although the advantages of doing concurrency in a single-threaded environment far outstrip the disadvantages, there are still times when you want to do some lengthy processing but don't want to block up the thread for new HTTP requests or UI activity.
This module provides common functional primitives like map
, filter
and forEach
but that call setImmediate
regularly so as not to block other activity. This means you can do large processing and stay responsive.
The trick is to call setImmediate regularly so your application is still responsive, but not on every iteration so the processing isn't too slow. This module does that by processing the arrays and calling setImmediate once every 10ms or so, not too much, not too little. This interval is configurable of course.
const cooperative = require('cooperative')
let veryLargeArray = [1, 2, 3, ...]
let resultsPromise = cooperative.map(veryLargeArray, (item, index) => {
// some involved operation
})
// continue to process other IO, UI events, etc
let results = await resultsPromise
let mappedResults = await cooperative.map(array, mapper, options)
- array - an array
- mapper(item, index) - a function taking each array
item
andindex
, and returning either a value or a Promise of a value. - mappedResults - the corresponding results of
mapper
for eachitem
inarray
let filteredArray = await cooperative.filter(array, predicate, options)
- array - an array
- predicate(item, index) - a function taking each array
item
andindex
, and returning either a value or a Promise of a value. If the value is truthy then the item is returned in the - filteredArray - the items in
array
for whichpredicate
returned a truthy value
await cooperative.forEach(array, action, options)
- array - an array
- action(item, index) - a function taking each array
item
andindex
and performing an action. If the return value is a promise, thenforEach
will wait for all promises to complete.
let reducedResults = await cooperative.reduce(array, operator, initial, options)
- array - an array
- operator(accumulator, item, index) - a function taking an
accumulator
, each arrayitem
andindex
. The return value is the accumulator for theoperator
call on the nextitem
. - initial - the value of the first accumulator
- reducedResults - the last accumulator
let mappedObject = await cooperative.mapObject(object, mapper, options)
- object - an object
- mapper(value, key) - a function taking each
value
andkey
inobject
, the value returned is placed into a new object atkey
. This function can return a promise. - mappedObject - a new object with it's values mapped by
mapper
- options.interval - the amount of time in ms to allow processing before calling
setInterval
, defaults to 10ms.
Featurist provides full stack, feature driven development teams. Want to join us? Check out our career opportunities.