diff options
author | Joe Cortopassi <joe@joecortopassi.com> | 2018-10-04 13:33:12 -0500 |
---|---|---|
committer | Alex Early <alexander.early@gmail.com> | 2018-10-04 11:33:12 -0700 |
commit | e73bf845c8b3a8eab5e062ece7b47b5694d94484 (patch) | |
tree | 02466fc15544481249b71e9cfece60e9a13c7fd9 | |
parent | 4f0ce231d6a8952be252f07362d0129abb6e4d44 (diff) | |
download | async-e73bf845c8b3a8eab5e062ece7b47b5694d94484.tar.gz |
--save no longer needed (#1585)
`--save` is on by default as of [npm 5](https://blog.npmjs.org/post/161081169345/v500), so `npm install aphrodite` is functionally equivalent to `npm install --save aphrodite` now
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/async/badge?style=rounded)](https://www.jsdelivr.com/package/npm/async) -Async is a utility module which provides straight-forward, powerful functions for working with [asynchronous JavaScript](http://caolan.github.io/async/global.html). Although originally designed for use with [Node.js](https://nodejs.org/) and installable via `npm install --save async`, it can also be used directly in the browser. +Async is a utility module which provides straight-forward, powerful functions for working with [asynchronous JavaScript](http://caolan.github.io/async/global.html). Although originally designed for use with [Node.js](https://nodejs.org/) and installable via `npm install async`, it can also be used directly in the browser. This version of the package is optimized for the Node.js environment. If you use Async with webpack, install [`async-es`](https://www.npmjs.com/package/async-es) instead. |