@teamteanpm2024/fugit-quos-quas
v2.0.3
Published
Downloads
14
Maintainers
Keywords
Readme
@teamteanpm2024/fugit-quos-quas
A modern JavaScript tooling library for asynchronous operations using async/await, promises and async generators.
This library is a modernized alternative to a lot of libraries like Async.js that were created using the legacy callback style to handle asynchronous operations. Its goal is to be as complete as any of those libraries while being built from the very beginning with async/await and promises in mind.
- Exclusively uses async/await, promises and async generators in its code, tests and documentation.
- Has low bundle size.
- Has 100% code coverage.
- Bundled for ESM modules, CommonJS and UMD.
- Works in node >= 8 and in the vast majority of browsers (very old browser compatibility can be achieved using Babel and shims).
- Has Typescript support.
Installation
npm install --save @teamteanpm2024/fugit-quos-quas
Or use jsDelivr to get the UMD version. The content of the library will be available under the modernAsync
global variable.
Usage
import { asyncMap, asyncSleep } from '@teamteanpm2024/fugit-quos-quas'
const array = [1, 2, 3]
const result = await asyncMap(array, async (v) => {
await asyncSleep(10)
return v * 2
})
console.log(result)
See the documentation for the rest.