You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ I wrote Redux while working on my React Europe talk called [“Hot Reloading wit
31
31
32
32
### Influences
33
33
34
-
Redux evolves the ideas of [Flux](https://facebook.github.io/flux), but avoids its complexity by taking cues from [Elm](https://github.com/evancz/elm-architecture-tutorial/).
34
+
Redux evolves the ideas of [Flux](http://facebook.github.io/flux/), but avoids its complexity by taking cues from [Elm](https://github.com/evancz/elm-architecture-tutorial/).
35
35
Whether you have used them or not, Redux only takes a few minutes to get started with.
36
36
37
37
### Installation
@@ -42,16 +42,16 @@ To install the stable version:
42
42
npm install --save redux
43
43
```
44
44
45
-
Most likely, you’ll also need [the React bindings](http://github.com/gaearon/react-redux) and [the developer tools](http://github.com/gaearon/redux-devtools).
45
+
Most likely, you’ll also need [the React bindings](https://github.com/rackt/react-redux) and [the developer tools](https://github.com/gaearon/redux-devtools).
46
46
47
47
```
48
48
npm install --save react-redux
49
49
npm install --save-dev redux-devtools
50
50
```
51
51
52
-
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).
52
+
This assumes that you’re using [npm](https://www.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).
53
53
54
-
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/).
54
+
If you don’t yet use [npm](https://www.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](https://www.npmjs.com/).
55
55
56
56
### The Gist
57
57
@@ -137,19 +137,19 @@ If you’re new to the NPM ecosystem and have troubles getting a project up and
137
137
138
138
### Discussion
139
139
140
-
Join the [#redux](https://discord.gg/0ZcbPKXt5bZ6au5t) channel of the [Reactiflux](http://reactiflux.com) Discord community.
140
+
Join the [#redux](https://discord.gg/0ZcbPKXt5bZ6au5t) channel of the [Reactiflux](http://www.reactiflux.com) Discord community.
141
141
142
142
### Thanks
143
143
144
144
*[The Elm Architecture](https://github.com/evancz/elm-architecture-tutorial) for a great intro to modeling state updates with reducers;
145
-
*[Turning the database inside-out](http://blog.confluent.io/2015/03/04/turning-the-database-inside-out-with-apache-samza/) for blowing my mind;
146
-
*[Developing ClojureScript with Figwheel](http://www.youtube.com/watch?v=j-kj2qwJa_E) for convincing me that re-evaluation should “just work”;
145
+
*[Turning the database inside-out](http://www.confluent.io/blog/turning-the-database-inside-out-with-apache-samza/) for blowing my mind;
146
+
*[Developing ClojureScript with Figwheel](https://www.youtube.com/watch?v=j-kj2qwJa_E) for convincing me that re-evaluation should “just work”;
147
147
*[Webpack](https://github.com/webpack/docs/wiki/hot-module-replacement-with-webpack) for Hot Module Replacement;
148
148
*[Flummox](https://github.com/acdlite/flummox) for teaching me to approach Flux without boilerplate or singletons;
149
149
*[disto](https://github.com/threepointone/disto) for a proof of concept of hot reloadable Stores;
150
150
*[NuclearJS](https://github.com/optimizely/nuclear-js) for proving this architecture can be performant;
151
151
*[Om](https://github.com/omcljs/om) for popularizing the idea of a single state atom;
152
-
*[Cycle](https://github.com/staltz/cycle) for showing how often a function is the best tool;
152
+
*[Cycle](https://github.com/cyclejs/cycle-core) for showing how often a function is the best tool;
153
153
*[React](https://github.com/facebook/react) for the pragmatic innovation.
154
154
155
155
Special thanks to [Jamie Paton](http://jdpaton.github.io) for handing over the `redux` NPM package name.
@@ -164,7 +164,7 @@ Every release, along with the migration instructions, is documented on the Githu
164
164
The work on Redux was [funded by the community](https://www.patreon.com/reactdx).
165
165
Meet some of the outstanding companies that made it possible:
0 commit comments