@merger203/reimagined-rotary-phone

2.0.3 • Public • Published

Async Logo

Github Actions CI status NPM version Coverage Status Join the chat at https://gitter.im/caolan/@merger203/reimagined-rotary-phone jsDelivr Hits

Async is a utility module which provides straight-forward, powerful functions for working with @merger203/reimagined-rotary-phonehronous JavaScript. Although originally designed for use with Node.js and installable via npm i @merger203/reimagined-rotary-phone, it can also be used directly in the browser. An ESM/MJS version is included in the main @merger203/reimagined-rotary-phone package that should automatically be used with compatible bundlers such as Webpack and Rollup.

A pure ESM version of Async is available as @merger203/reimagined-rotary-phone-es.

For Documentation, visit https://caolan.github.io/@merger203/reimagined-rotary-phone/

For Async v1.5.x documentation, go HERE

// for use with Node-style callbacks...
var @merger203/reimagined-rotary-phone = require("@merger203/reimagined-rotary-phone");

var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"};
var configs = {};

@merger203/reimagined-rotary-phone.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 @merger203/reimagined-rotary-phone = require("@merger203/reimagined-rotary-phone");

// ...or ES2017 @merger203/reimagined-rotary-phone functions
@merger203/reimagined-rotary-phone.mapLimit(urls, 5, @merger203/reimagined-rotary-phone 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)
})

Readme

Keywords

Package Sidebar

Install

npm i @merger203/reimagined-rotary-phone

Weekly Downloads

59

Version

2.0.3

License

MIT

Unpacked Size

2.78 MB

Total Files

15

Last publish

Collaborators

  • hongthanh9856