Add after-all-results to Control flow section

The module `after-all-results` is an extremely lightweight way of performing a series of async function calls and have it call a callback function once they have all finished.

The callback will be called with an array of the results from the async function calls.

The focus of the module is to do this with as little a coding overhead as possible.
This commit is contained in:
Thomas Watson Steen
2014-09-13 15:29:00 +02:00
parent 88432e9c46
commit c8638a6dc9

View File

@@ -213,6 +213,7 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list thing.
- Callbacks - Callbacks
- [each-async](https://github.com/sindresorhus/each-async) - Async concurrent iterator like forEach. - [each-async](https://github.com/sindresorhus/each-async) - Async concurrent iterator like forEach.
- [async](https://github.com/caolan/async) - Provides straight-forward, powerful functions for working with asynchronousity. - [async](https://github.com/caolan/async) - Provides straight-forward, powerful functions for working with asynchronousity.
- [after-all-results](https://github.com/watson/after-all-results) - Bundle results of async functions calls into one callback with all the results.
- Generators - Generators
- [co](https://github.com/visionmedia/co) - The ultimate generator based flow-control goodness. - [co](https://github.com/visionmedia/co) - The ultimate generator based flow-control goodness.
- Promises - Promises