summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Voyer <wouaren@gmail.com>2017-04-19 11:55:09 +0200
committerGitHub <noreply@github.com>2017-04-19 11:55:09 +0200
commitb9758d1d3808dd26d395cdfb4715f01a480991fb (patch)
tree388c5f179e54ae972d22fc3e2aace4f93998f8b6
parent996abc22d981d685eee2c431ca098d39b277cfa7 (diff)
downloadasync-b9758d1d3808dd26d395cdfb4715f01a480991fb.tar.gz
docs(intro): remove non relevant pkg managers
both jam and component are deprecated reading their GitHub readmes.
-rw-r--r--intro.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/intro.md b/intro.md
index 2185fb3..37af316 100644
--- a/intro.md
+++ b/intro.md
@@ -14,12 +14,11 @@ it can also be used directly in the browser.
Async is also installable via:
+- [yarn](https://yarnpkg.com/en/): `yarn add async`
- [bower](http://bower.io/): `bower install async`
-- [component](https://github.com/componentjs/component): `component install caolan/async`
-- [jam](http://jamjs.org/): `jam install async`
Async provides around 70 functions that include the usual 'functional'
-suspects (`map`, `reduce`, `filter`, `each`…) as well as some common patterns
+suspects (`map`, `reduce`, `filter`, `each`…) as cwell as some common patterns
for asynchronous control flow (`parallel`, `series`, `waterfall`…). All these
functions assume you follow the Node.js convention of providing a single
callback as the last argument of your asynchronous function -- a callback which expects an Error as its first argument -- and calling the callback once.