Like forEachAsync, or Promise.all(), but handling a bounded number of items at any given time.
Go to file
AJ ONeal 178672ad0d v1.0.3: use index as well 2019-11-25 16:05:46 -07:00
.gitignore Initial commit 2019-06-13 23:04:48 +00:00
LICENSE Initial commit 2019-06-13 23:04:48 +00:00
README.md syntax fix 2019-06-14 10:52:27 -06:00
batchasync.js v1.0.3: use index as well 2019-11-25 16:05:46 -07:00
package-lock.json v1.0.3: use index as well 2019-11-25 16:05:46 -07:00
package.json v1.0.3: use index as well 2019-11-25 16:05:46 -07:00
test.js v1.0.3: use index as well 2019-11-25 16:05:46 -07:00

README.md

batchasync.js

Like calling map() and resolving with Promise.all(), but handling a bounded number of items at any given time.

Want to read about it?

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]);
});

A note on undefined

Returning undefined will cause an exception to be thrown, and the Promise to be rejected.

This is on purpose - because undefined is indistinguishable from 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;
}