From c8638a6dc97e4760a9661a2360ce044196df4d54 Mon Sep 17 00:00:00 2001 From: Thomas Watson Steen Date: Sat, 13 Sep 2014 15:29:00 +0200 Subject: [PATCH] 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. --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index adc20f6..2067fea 100644 --- a/readme.md +++ b/readme.md @@ -213,6 +213,7 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list thing. - Callbacks - [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. + - [after-all-results](https://github.com/watson/after-all-results) - Bundle results of async functions calls into one callback with all the results. - Generators - [co](https://github.com/visionmedia/co) - The ultimate generator based flow-control goodness. - Promises