AJ ONeal 0c2692f9fb | ||
---|---|---|
.gitignore | ||
LICENSE | ||
README.md | ||
batchasync.js | ||
package.json | ||
test.js |
README.md
batchasync.js
Like calling map()
and resolving with Promise.all()
,
but handling a bounded number of items at any given time.
Install
npm install --save batchasync
Usage
// Browsers
var batchAsync = window.batchAsync;
// Node
var batchAsync = require('batchasync').batchAsync;
var batchSize = 4;
var things = ['apples', 'bananas', 'pears'];
function doStuff() {
// ... go fetch things
}
batchAsync(batchSize, things, doStuff).then(function(results) {
// all results, in order, just like Promise.all()
console.log(results[0]);
});
Returning 'undefined'
Returning undefined
will cause an exception to be thrown
(because it looks like a skipped promise). Return null
instead.
Example (bad):
function doStuff(thing) {
// Oops! forgot to return
request('https://searchallthe.pictures/api/' + thing);
}
Example (good):
function doStuff(thing) {
return request('https://searchallthe.pictures/api/' + thing);
}
Example (good):
function doStuff(thing) {
return null;
}