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