From a60f4c3058aeb7d2d82abd900e6e32d83c12b048 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 22 Jan 2014 16:19:21 -0700 Subject: [PATCH 1/2] added reference to forAllAsync, lateral, and join --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e5c8035..539017c 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,10 @@ Analogous to `[].forEach`, but handles items asynchronously with a final callbac This is the most essential piece of the [`ArrayAsync`](https://github.com/FuturesJS/ArrayAsync) package. +For cases where you want to loop through batches of items at once (as opposed to strictly one-by-one as forEachAsync does), check out [`forAllAsync`](https://github.com/FuturesJS/forAllAsync) and [`lateral`](https://github.com/FuturesJS/lateral). + +For cases where you want to loop through all items at once and we able to know when they're all done see [`join`](https://github.com/FuturesJS/join) + v3.x - Diet Cola Edition --- From 9054f65649cb43169127d20a5454ae469ea26e56 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 22 Jan 2014 16:20:37 -0700 Subject: [PATCH 2/2] added screencast --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 539017c..a1120ec 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,11 @@ v3.x - Diet Cola Edition As I do every few years, I decided to rewrite FuturesJS. This year's remake is extremely lightweight. +Screencast +--- + + + Usage ===