You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
parttimejob/node_modules/async
侯晓宇 0cb2601919
init
1 month ago
..
dist init 1 month ago
internal init 1 month ago
CHANGELOG.md init 1 month ago
LICENSE init 1 month ago
README.md init 1 month ago
all.js init 1 month ago
allLimit.js init 1 month ago
allSeries.js init 1 month ago
any.js init 1 month ago
anyLimit.js init 1 month ago
anySeries.js init 1 month ago
apply.js init 1 month ago
applyEach.js init 1 month ago
applyEachSeries.js init 1 month ago
asyncify.js init 1 month ago
auto.js init 1 month ago
autoInject.js init 1 month ago
bower.json init 1 month ago
cargo.js init 1 month ago
compose.js init 1 month ago
concat.js init 1 month ago
concatLimit.js init 1 month ago
concatSeries.js init 1 month ago
constant.js init 1 month ago
detect.js init 1 month ago
detectLimit.js init 1 month ago
detectSeries.js init 1 month ago
dir.js init 1 month ago
doDuring.js init 1 month ago
doUntil.js init 1 month ago
doWhilst.js init 1 month ago
during.js init 1 month ago
each.js init 1 month ago
eachLimit.js init 1 month ago
eachOf.js init 1 month ago
eachOfLimit.js init 1 month ago
eachOfSeries.js init 1 month ago
eachSeries.js init 1 month ago
ensureAsync.js init 1 month ago
every.js init 1 month ago
everyLimit.js init 1 month ago
everySeries.js init 1 month ago
filter.js init 1 month ago
filterLimit.js init 1 month ago
filterSeries.js init 1 month ago
find.js init 1 month ago
findLimit.js init 1 month ago
findSeries.js init 1 month ago
foldl.js init 1 month ago
foldr.js init 1 month ago
forEach.js init 1 month ago
forEachLimit.js init 1 month ago
forEachOf.js init 1 month ago
forEachOfLimit.js init 1 month ago
forEachOfSeries.js init 1 month ago
forEachSeries.js init 1 month ago
forever.js init 1 month ago
groupBy.js init 1 month ago
groupByLimit.js init 1 month ago
groupBySeries.js init 1 month ago
index.js init 1 month ago
inject.js init 1 month ago
log.js init 1 month ago
map.js init 1 month ago
mapLimit.js init 1 month ago
mapSeries.js init 1 month ago
mapValues.js init 1 month ago
mapValuesLimit.js init 1 month ago
mapValuesSeries.js init 1 month ago
memoize.js init 1 month ago
nextTick.js init 1 month ago
package.json init 1 month ago
parallel.js init 1 month ago
parallelLimit.js init 1 month ago
priorityQueue.js init 1 month ago
queue.js init 1 month ago
race.js init 1 month ago
reduce.js init 1 month ago
reduceRight.js init 1 month ago
reflect.js init 1 month ago
reflectAll.js init 1 month ago
reject.js init 1 month ago
rejectLimit.js init 1 month ago
rejectSeries.js init 1 month ago
retry.js init 1 month ago
retryable.js init 1 month ago
select.js init 1 month ago
selectLimit.js init 1 month ago
selectSeries.js init 1 month ago
seq.js init 1 month ago
series.js init 1 month ago
setImmediate.js init 1 month ago
some.js init 1 month ago
someLimit.js init 1 month ago
someSeries.js init 1 month ago
sortBy.js init 1 month ago
timeout.js init 1 month ago
times.js init 1 month ago
timesLimit.js init 1 month ago
timesSeries.js init 1 month ago
transform.js init 1 month ago
tryEach.js init 1 month ago
unmemoize.js init 1 month ago
until.js init 1 month ago
waterfall.js init 1 month ago
whilst.js init 1 month ago
wrapSync.js init 1 month ago

README.md

Async Logo

Build Status via Travis CI NPM version Coverage Status Join the chat at https://gitter.im/caolan/async 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)
})