Like forEachAsync, or Promise.all(), but handling a bounded number of items at any given time.
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
AJ ONeal 178672ad0d v1.0.3: use index as well 4 年前
.gitignore Initial commit 5 年前
LICENSE Initial commit 5 年前
README.md syntax fix 5 年前
batchasync.js v1.0.3: use index as well 4 年前
package-lock.json v1.0.3: use index as well 4 年前
package.json v1.0.3: use index as well 4 年前
test.js v1.0.3: use index as well 4 年前

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