@xdanangelxoqenpm/ad-dolorum-odio
v1.0.0
Published
![Async Logo](https://raw.githubusercontent.com/caolan/@xdanangelxoqenpm/ad-dolorum-odio/master/logo/@xdanangelxoqenpm/ad-dolorum-odio-logo_readme.jpg)
Downloads
3
Maintainers
Keywords
Readme
Async is a utility module which provides straight-forward, powerful functions for working with @xdanangelxoqenpm/ad-dolorum-odiohronous JavaScript. Although originally designed for use with Node.js and installable via npm i @xdanangelxoqenpm/ad-dolorum-odio
, it can also be used directly in the browser. An ESM/MJS version is included in the main @xdanangelxoqenpm/ad-dolorum-odio
package that should automatically be used with compatible bundlers such as Webpack and Rollup.
A pure ESM version of Async is available as @xdanangelxoqenpm/ad-dolorum-odio-es
.
For Documentation, visit https://caolan.github.io/@xdanangelxoqenpm/ad-dolorum-odio/
For Async v1.5.x documentation, go HERE
// for use with Node-style callbacks...
var @xdanangelxoqenpm/ad-dolorum-odio = require("@xdanangelxoqenpm/ad-dolorum-odio");
var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"};
var configs = {};
@xdanangelxoqenpm/ad-dolorum-odio.forEachOf(obj, (value, key, callback) => {
fs.readFile(__dirname + value, "utf8", (err, data) => {
if (err) return callback(err);
try {
configs[key] = JSON.parse(data);
} catch (e) {
return callback(e);
}
callback();
});
}, err => {
if (err) console.error(err.message);
// configs is now a map of JSON data
doSomethingWith(configs);
});
var @xdanangelxoqenpm/ad-dolorum-odio = require("@xdanangelxoqenpm/ad-dolorum-odio");
// ...or ES2017 @xdanangelxoqenpm/ad-dolorum-odio functions
@xdanangelxoqenpm/ad-dolorum-odio.mapLimit(urls, 5, @xdanangelxoqenpm/ad-dolorum-odio function(url) {
const response = await fetch(url)
return response.body
}, (err, results) => {
if (err) throw err
// results is now an array of the response bodies
console.log(results)
})