https://github.com/watson/after-all-results
Like after-all, but collects the results for you
https://github.com/watson/after-all-results
Last synced: 6 months ago
JSON representation
Like after-all, but collects the results for you
- Host: GitHub
- URL: https://github.com/watson/after-all-results
- Owner: watson
- License: mit
- Created: 2014-08-16T21:24:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-31T17:04:49.000Z (almost 11 years ago)
- Last Synced: 2025-04-09T18:52:04.802Z (7 months ago)
- Language: JavaScript
- Size: 199 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nodejs-precise - after-all-results - all-results .svg?style=social&label=Star&maxAge=2592000?style=flat-square)]() | Bundle results of async functions calls into one callback with all the results. | (Packages / Control flow Callbacks)
README
# after-all-results
If you have multiple async function calls that you want to run in
parallel and collect all their results in an array, this is the module
for you.
It's like [after-all](https://github.com/sorribas/after-all) with a
build in results aggregator.
[](http://travis-ci.org/watson/after-all-results)
## Installation
```
npm install after-all-results
```
## Usage
First require the module:
```javascript
var afterAll = require('after-all-results');
```
Then initialize with a callback that should be called once all the async
stuff is done:
```javascript
var next = afterAll(function (err, results) {
// all done!
console.log(results);
});
```
The returned `next` function is essentially just a smart
callback-generator. The after-all-results module will wait and not call
the all-done function until all the generated callbacks have been
called:
```javascript
someAsyncFunction(next());
anotherAsyncFunction(next());
```
**Note:** It is important that all `next()` calls are done on the same
tick as the inital call to `afterAll()`!
### Bonus: Inception mode
```javascript
var next = afterAll(function (err, results) {
// results will be an array of `arg1` from below
console.log('Done with everything!');
});
async(next(function (err, arg1, arg2) {
console.log('Done with first call to async');
});
async(next(function (err, arg1, arg2) {
console.log('Done with second call to async');
});
```
## License
MIT