Installations
npm install @merger203/reimagined-rotary-phone
Developer Guide
Typescript
No
Module System
CommonJS
Node Version
20.12.2
NPM Version
10.5.0
Score
77.4
Supply Chain
88.9
Quality
77.1
Maintenance
100
Vulnerability
100
License
Releases
Contributors
Unable to fetch Contributors
Love this project? Help keep it running — sponsor us today! 🚀
Developer
merger203
Download Statistics
Total Downloads
2,588
Last Day
13
Last Week
13
Last Month
202
Last Year
2,588
GitHub Statistics
2,305 Commits
1 Watching
1 Branches
1 Contributors
Package Meta Information
Latest Version
2.0.3
Package Id
@merger203/reimagined-rotary-phone@2.0.3
Unpacked Size
2.65 MB
Size
972.82 kB
File Count
15
NPM Version
10.5.0
Node Version
20.12.2
Publised On
04 May 2024
Total Downloads
Cumulative downloads
Total Downloads
2,588
Last day
0%
13
Compared to previous day
Last week
-51.9%
13
Compared to previous week
Last month
-15.1%
202
Compared to previous month
Last year
0%
2,588
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
No dependencies detected.
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
1// for use with Node-style callbacks... 2var @merger203/reimagined-rotary-phone = require("@merger203/reimagined-rotary-phone"); 3 4var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"}; 5var configs = {}; 6 7@merger203/reimagined-rotary-phone.forEachOf(obj, (value, key, callback) => { 8 fs.readFile(__dirname + value, "utf8", (err, data) => { 9 if (err) return callback(err); 10 try { 11 configs[key] = JSON.parse(data); 12 } catch (e) { 13 return callback(e); 14 } 15 callback(); 16 }); 17}, err => { 18 if (err) console.error(err.message); 19 // configs is now a map of JSON data 20 doSomethingWith(configs); 21});
1var @merger203/reimagined-rotary-phone = require("@merger203/reimagined-rotary-phone"); 2 3// ...or ES2017 @merger203/reimagined-rotary-phone functions 4@merger203/reimagined-rotary-phone.mapLimit(urls, 5, @merger203/reimagined-rotary-phone function(url) { 5 const response = await fetch(url) 6 return response.body 7}, (err, results) => { 8 if (err) throw err 9 // results is now an array of the response bodies 10 console.log(results) 11})
No vulnerabilities found.
No security vulnerabilities found.