From 1af382d62b535f255a699fa03a4043faa5d3514e Mon Sep 17 00:00:00 2001 From: Alexander Early Date: Sun, 2 Apr 2017 23:08:24 -0700 Subject: [PATCH] add list of related libraries to docs intro. Closes #1314 --- intro.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/intro.md b/intro.md index 35e9c76b2..2185fb3e7 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.