caolan/async
Fork: 2407 Star: 28186 (更新于 2024-11-11 01:11:08)
license: MIT
Language: JavaScript .
Async utilities for node and the browser
最后发布版本: v2.0.0 ( 2017-04-07 05:35:24)
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 i async
, it can also be used directly in the browser. An ESM/MJS version is included in the main async
package that should automatically be used with compatible bundlers such as Webpack and Rollup.
A pure ESM version of Async is available as async-es
.
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)
})
最近版本更新:(数据更新于 2024-09-29 05:55:38)
2017-04-07 05:35:24 v2.0.0
2017-04-07 05:34:21 v2.1.0
2017-04-07 05:33:57 v2.1.2
2017-04-07 05:33:38 v2.1.3
2017-04-07 05:33:20 v2.1.5
2017-04-07 05:33:08 v2.2.0
2017-04-07 05:32:14 v2.3.0
主题(topics):
async, callbacks, javascript
caolan/async同语言 JavaScript最近更新仓库
2024-11-22 22:33:12 ZeroRing233/Degrees-of-Lewdity-RobinMod
2024-11-22 16:46:00 meshery/meshery
2024-11-21 23:03:24 bia-pain-bache/BPB-Worker-Panel
2024-11-21 22:46:48 MHSanaei/3x-ui
2024-11-21 07:00:59 nodejs/node
2024-11-21 00:49:46 FortAwesome/Font-Awesome