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.
lihuilin 991dea072f 金豆完成,任务见bug表 1 month ago
..
dist 250414提交 1 month ago
internal 250414提交 1 month ago
CHANGELOG.md 250414提交 1 month ago
LICENSE 250414提交 1 month ago
README.md 250414提交 1 month ago
all.js 250414提交 1 month ago
allLimit.js 250414提交 1 month ago
allSeries.js 250414提交 1 month ago
any.js 250414提交 1 month ago
anyLimit.js 250414提交 1 month ago
anySeries.js 250414提交 1 month ago
apply.js 250414提交 1 month ago
applyEach.js 250414提交 1 month ago
applyEachSeries.js 250414提交 1 month ago
asyncify.js 250414提交 1 month ago
auto.js 250414提交 1 month ago
autoInject.js 250414提交 1 month ago
bower.json 250414提交 1 month ago
cargo.js 250414提交 1 month ago
compose.js 250414提交 1 month ago
concat.js 250414提交 1 month ago
concatLimit.js 250414提交 1 month ago
concatSeries.js 250414提交 1 month ago
constant.js 250414提交 1 month ago
detect.js 250414提交 1 month ago
detectLimit.js 250414提交 1 month ago
detectSeries.js 250414提交 1 month ago
dir.js 250414提交 1 month ago
doDuring.js 250414提交 1 month ago
doUntil.js 250414提交 1 month ago
doWhilst.js 250414提交 1 month ago
during.js 250414提交 1 month ago
each.js 250414提交 1 month ago
eachLimit.js 250414提交 1 month ago
eachOf.js 250414提交 1 month ago
eachOfLimit.js 250414提交 1 month ago
eachOfSeries.js 250414提交 1 month ago
eachSeries.js 250414提交 1 month ago
ensureAsync.js 250414提交 1 month ago
every.js 250414提交 1 month ago
everyLimit.js 250414提交 1 month ago
everySeries.js 250414提交 1 month ago
filter.js 250414提交 1 month ago
filterLimit.js 250414提交 1 month ago
filterSeries.js 250414提交 1 month ago
find.js 250414提交 1 month ago
findLimit.js 250414提交 1 month ago
findSeries.js 250414提交 1 month ago
foldl.js 250414提交 1 month ago
foldr.js 250414提交 1 month ago
forEach.js 250414提交 1 month ago
forEachLimit.js 250414提交 1 month ago
forEachOf.js 250414提交 1 month ago
forEachOfLimit.js 250414提交 1 month ago
forEachOfSeries.js 250414提交 1 month ago
forEachSeries.js 250414提交 1 month ago
forever.js 250414提交 1 month ago
groupBy.js 250414提交 1 month ago
groupByLimit.js 250414提交 1 month ago
groupBySeries.js 250414提交 1 month ago
index.js 250414提交 1 month ago
inject.js 250414提交 1 month ago
log.js 250414提交 1 month ago
map.js 250414提交 1 month ago
mapLimit.js 250414提交 1 month ago
mapSeries.js 250414提交 1 month ago
mapValues.js 250414提交 1 month ago
mapValuesLimit.js 250414提交 1 month ago
mapValuesSeries.js 250414提交 1 month ago
memoize.js 250414提交 1 month ago
nextTick.js 250414提交 1 month ago
package.json 250414提交 1 month ago
parallel.js 250414提交 1 month ago
parallelLimit.js 250414提交 1 month ago
priorityQueue.js 250414提交 1 month ago
queue.js 250414提交 1 month ago
race.js 250414提交 1 month ago
reduce.js 250414提交 1 month ago
reduceRight.js 250414提交 1 month ago
reflect.js 250414提交 1 month ago
reflectAll.js 250414提交 1 month ago
reject.js 250414提交 1 month ago
rejectLimit.js 250414提交 1 month ago
rejectSeries.js 250414提交 1 month ago
retry.js 250414提交 1 month ago
retryable.js 250414提交 1 month ago
select.js 250414提交 1 month ago
selectLimit.js 250414提交 1 month ago
selectSeries.js 250414提交 1 month ago
seq.js 250414提交 1 month ago
series.js 250414提交 1 month ago
setImmediate.js 250414提交 1 month ago
some.js 250414提交 1 month ago
someLimit.js 250414提交 1 month ago
someSeries.js 250414提交 1 month ago
sortBy.js 250414提交 1 month ago
timeout.js 250414提交 1 month ago
times.js 250414提交 1 month ago
timesLimit.js 250414提交 1 month ago
timesSeries.js 250414提交 1 month ago
transform.js 250414提交 1 month ago
tryEach.js 250414提交 1 month ago
unmemoize.js 250414提交 1 month ago
until.js 250414提交 1 month ago
waterfall.js 250414提交 1 month ago
whilst.js 250414提交 1 month ago
wrapSync.js 250414提交 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)
})