@cloudflare/util-async
v1.2.15
Published
Cloudflare Async Util
Downloads
3,584
Maintainers
Keywords
Readme
cf-util-async
Cloudflare Async Util
Installation
$ npm install cf-util-async
Usage
Running async functions in a series:
import http from 'cf-util-http';
import {series} from 'cf-util-async';
series([
cb => http.get('endpoint-1.json', null, cb), // If an error occurs, then the rest of the callbacks are not called.
cb => http.get('endpoint-2.json', null, cb)
], (err, results) => {
if (err) {
console.log(err.body); // > { errors: [{ message: 'Error!' }] }
} else {
console.log(res.body); // > [{ result: { id: 1, ... } }, { result: { id: 2, ... } }]
}
});
Running async functions in parallel:
import http from 'cf-util-http';
import {parallel} from 'cf-util-async';
parallel([
cb => http.get('endpoint-1.json', null, cb),
cb => http.get('endpoint-2.json', null, cb)
], (err, results) => {
if (err) {
console.log(err.body); // > { errors: [{ message: 'Error!' }] }
} else {
console.log(res.body); // > [{ result: { id: 1, ... } }, { result: { id: 2, ... } }]
}
});