summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2017-04-02 23:08:24 -0700
committerAlexander Early <alexander.early@gmail.com>2017-04-02 23:08:24 -0700
commit1af382d62b535f255a699fa03a4043faa5d3514e (patch)
treeb29054a3a5e35c6de80f30359b961cfbf7873a75
parent216d2844e667cccd449824d8fdcc5f76335972a5 (diff)
downloadasync-1af382d62b535f255a699fa03a4043faa5d3514e.tar.gz
add list of related libraries to docs intro. Closes #1314
-rw-r--r--intro.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/intro.md b/intro.md
index 35e9c76..2185fb3 100644
--- a/intro.md
+++ b/intro.md
@@ -218,3 +218,10 @@ $ npm install --save async-es
import waterfall from 'async-es/waterfall';
import async from 'async-es';
```
+
+## Other Libraries
+
+* [`limiter`](https://www.npmjs.com/package/limiter) a package for rate-limiting based on requests per sec/hour.
+* [`neo-async`](https://www.npmjs.com/package/neo-async) an altername implementation of Async, focusing on speed.
+* [`co-async`](https://www.npmjs.com/package/co-async) a library inspired by Async for use with [`co`](https://www.npmjs.com/package/co) and generator functions.
+* [`promise-async`](https://www.npmjs.com/package/promise-async) a version of Async where all the methods are Promisified.