Skip to content

Commit

Permalink
Mention that you need NPM to install things from NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Aug 26, 2015
1 parent 163e7fa commit 6a4d9f0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ npm install --save react-redux
npm install --save-dev redux-devtools
```

This assumes that you’re using [npm](http://npmjs.com/) package manager with a module bundler like [Webpack](http://webpack.github.io) or [Browserify](http://browserify.org/) to consume [CommonJS modules](http://webpack.github.io/docs/commonjs.html).

If you don’t yet use [npm](http://npmjs.com/) or a modern module bundler, and would rather prefer a single-file [UMD](https://github.com/umdjs/umd) build that makes `Redux` available as a global object, you can grab a pre-built version from [cdnjs](https://cdnjs.com/libraries/redux). We *don’t* recommend this approach for any serious application, as most of the libraries complementary to Redux are only available on [npm](http://npmjs.com/).

### The Gist

The whole state of your app is stored in an object tree inside a single *store*.
Expand Down

0 comments on commit 6a4d9f0

Please sign in to comment.