Eric Foster 35b96bc934 initial commit пре 6 година
..
dist initial commit пре 6 година
internal initial commit пре 6 година
CHANGELOG.md initial commit пре 6 година
LICENSE initial commit пре 6 година
README.md initial commit пре 6 година
all.js initial commit пре 6 година
allLimit.js initial commit пре 6 година
allSeries.js initial commit пре 6 година
any.js initial commit пре 6 година
anyLimit.js initial commit пре 6 година
anySeries.js initial commit пре 6 година
apply.js initial commit пре 6 година
applyEach.js initial commit пре 6 година
applyEachSeries.js initial commit пре 6 година
asyncify.js initial commit пре 6 година
auto.js initial commit пре 6 година
autoInject.js initial commit пре 6 година
bower.json initial commit пре 6 година
cargo.js initial commit пре 6 година
compose.js initial commit пре 6 година
concat.js initial commit пре 6 година
concatLimit.js initial commit пре 6 година
concatSeries.js initial commit пре 6 година
constant.js initial commit пре 6 година
detect.js initial commit пре 6 година
detectLimit.js initial commit пре 6 година
detectSeries.js initial commit пре 6 година
dir.js initial commit пре 6 година
doDuring.js initial commit пре 6 година
doUntil.js initial commit пре 6 година
doWhilst.js initial commit пре 6 година
during.js initial commit пре 6 година
each.js initial commit пре 6 година
eachLimit.js initial commit пре 6 година
eachOf.js initial commit пре 6 година
eachOfLimit.js initial commit пре 6 година
eachOfSeries.js initial commit пре 6 година
eachSeries.js initial commit пре 6 година
ensureAsync.js initial commit пре 6 година
every.js initial commit пре 6 година
everyLimit.js initial commit пре 6 година
everySeries.js initial commit пре 6 година
filter.js initial commit пре 6 година
filterLimit.js initial commit пре 6 година
filterSeries.js initial commit пре 6 година
find.js initial commit пре 6 година
findLimit.js initial commit пре 6 година
findSeries.js initial commit пре 6 година
foldl.js initial commit пре 6 година
foldr.js initial commit пре 6 година
forEach.js initial commit пре 6 година
forEachLimit.js initial commit пре 6 година
forEachOf.js initial commit пре 6 година
forEachOfLimit.js initial commit пре 6 година
forEachOfSeries.js initial commit пре 6 година
forEachSeries.js initial commit пре 6 година
forever.js initial commit пре 6 година
groupBy.js initial commit пре 6 година
groupByLimit.js initial commit пре 6 година
groupBySeries.js initial commit пре 6 година
index.js initial commit пре 6 година
inject.js initial commit пре 6 година
log.js initial commit пре 6 година
map.js initial commit пре 6 година
mapLimit.js initial commit пре 6 година
mapSeries.js initial commit пре 6 година
mapValues.js initial commit пре 6 година
mapValuesLimit.js initial commit пре 6 година
mapValuesSeries.js initial commit пре 6 година
memoize.js initial commit пре 6 година
nextTick.js initial commit пре 6 година
package.json initial commit пре 6 година
parallel.js initial commit пре 6 година
parallelLimit.js initial commit пре 6 година
priorityQueue.js initial commit пре 6 година
queue.js initial commit пре 6 година
race.js initial commit пре 6 година
reduce.js initial commit пре 6 година
reduceRight.js initial commit пре 6 година
reflect.js initial commit пре 6 година
reflectAll.js initial commit пре 6 година
reject.js initial commit пре 6 година
rejectLimit.js initial commit пре 6 година
rejectSeries.js initial commit пре 6 година
retry.js initial commit пре 6 година
retryable.js initial commit пре 6 година
select.js initial commit пре 6 година
selectLimit.js initial commit пре 6 година
selectSeries.js initial commit пре 6 година
seq.js initial commit пре 6 година
series.js initial commit пре 6 година
setImmediate.js initial commit пре 6 година
some.js initial commit пре 6 година
someLimit.js initial commit пре 6 година
someSeries.js initial commit пре 6 година
sortBy.js initial commit пре 6 година
timeout.js initial commit пре 6 година
times.js initial commit пре 6 година
timesLimit.js initial commit пре 6 година
timesSeries.js initial commit пре 6 година
transform.js initial commit пре 6 година
tryEach.js initial commit пре 6 година
unmemoize.js initial commit пре 6 година
until.js initial commit пре 6 година
waterfall.js initial commit пре 6 година
whilst.js initial commit пре 6 година
wrapSync.js initial commit пре 6 година

README.md

Async Logo

Build Status via Travis CI NPM version Coverage Status libhive - Open source examples jsDelivr Hits

Async is a utility module which provides straight-forward, powerful functions for working with asynchronous JavaScript. Although originally designed for use with Node.js and installable via npm install --save async, it can also be used directly in the browser.

This version of the package is optimized for the Node.js environment. If you use Async with webpack, install async-es instead.

For Documentation, visit https://caolan.github.io/async/

For Async v1.5.x documentation, go HERE

// for use with Node-style callbacks...
var async = require("async");

var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"};
var configs = {};

async.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 async = require("async");

// ...or ES2017 async functions
async.mapLimit(urls, 5, async 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)
})