summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Moser <contact@stevemoser.org>2019-03-01 23:08:43 -0500
committerAlex Early <alexander.early@gmail.com>2019-03-01 20:08:43 -0800
commit267eb9cee18347871c1cb3e85fcc6f2452be65f4 (patch)
tree2143ec884e46c8f5f96eb09b34d5a2bf5a94164a
parentce0a7e203e8d3b2a68ca674038dad86e1a221e00 (diff)
downloadasync-267eb9cee18347871c1cb3e85fcc6f2452be65f4.tar.gz
Remove --save option as it isn't required anymore (#1624)
-rw-r--r--intro.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/intro.md b/intro.md
index 4402663..0638077 100644
--- a/intro.md
+++ b/intro.md
@@ -9,7 +9,7 @@
Async is a utility module which provides straight-forward, powerful functions
for working with asynchronous JavaScript. Although originally designed for
-use with [Node.js](https://nodejs.org/) and installable via `npm install --save async`,
+use with [Node.js](https://nodejs.org/) and installable via `npm install async`,
it can also be used directly in the browser.
Async is also installable via:
@@ -218,7 +218,7 @@ The source is available for download from
Alternatively, you can install using npm:
```bash
-$ npm install --save async
+$ npm install async
```
As well as using Bower:
@@ -267,7 +267,7 @@ included in the `/dist` folder. Async can also be found on the [jsDelivr CDN](ht
We also provide Async as a collection of ES2015 modules, in an alternative `async-es` package on npm.
```bash
-$ npm install --save async-es
+$ npm install async-es
```
```js