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