Make array iteration easy when using async/await and promises
- Same functionality as the ES5 Array iteration methods we all know
- All the methods return a
Promise
, making them awaitable and thenable - Allow the usage of async functions as callback
- Callbacks run concurrently
- Lightweight (no prd dependencies)
Install
$ npm install --save p-iteration
Usage
Smooth asynchronous iteration using async/await
:
const map = ; // map passing an async function as callback { return ;} // map passing a non-async function as callback { const responses = await ; // ... do some stuff return responses;} // ...
const filter = ; { const filteredUsers = await ; // ... do some stuff return filteredUsers;} // ...
All methods return a Promise so they can just be used outside an async function just with plain Promises:
const map = ; ;
If there is a Promise in the array, it will be unwrapped before calling the callback:
const forEach = ;const fetchJSON = ; { const users = // returns a Promise userId: 123 name: 'Jolyne' age: 19 userId: 156 name: 'Caesar' age: 20 ; return ;}
const find = ;const fetchJSON = ; { const users = // returns a Promise userId: 123 name: 'Jolyne' age: 19 userId: 156 name: 'Caesar' age: 20 ; return ;}
The callback will be invoked as soon as the Promise is unwrapped:
const forEach = ; // function that returns a Promise resolved after 'ms' passedconst delay = ; // 100, 200, 300 and 500 will be logged in this order { const numbers = 100 ; await ;}
API
The methods are implementations of the ES5 Array iteration methods we all know with the same syntax, but all return a Promise
. Also, with the exception of reduce()
, all methods callbacks are run concurrently. There is a series version of each method, called: ${methodName}Series
, series methods use the same API that their respective concurrent ones.
There is a link to the original reference of each method in the docs of this module:
Instance methods
Extending native objects is discouraged and I don't recommend it, but in case you know what you are doing, you can extend Array.prototype
to use the above methods as instance methods. They have been renamed as async${MethodName}
, so the original ones are not overwritten.
const instanceMethods = ; Object; { const foo = await 1 2 3;}
License
MIT © Antonio V