Skip to content

Commit 2341b3f

Browse files
committed
Merge pull request reduxjs#1034 from ReadmeCritic/master
Update redirects in Readme
2 parents 4d9bd31 + c9dc970 commit 2341b3f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ I wrote Redux while working on my React Europe talk called [“Hot Reloading wit
3131

3232
### Influences
3333

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/).
3535
Whether you have used them or not, Redux only takes a few minutes to get started with.
3636

3737
### Installation
@@ -42,16 +42,16 @@ To install the stable version:
4242
npm install --save redux
4343
```
4444

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).
4646

4747
```
4848
npm install --save react-redux
4949
npm install --save-dev redux-devtools
5050
```
5151

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).
5353

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/).
5555

5656
### The Gist
5757

@@ -137,19 +137,19 @@ If you’re new to the NPM ecosystem and have troubles getting a project up and
137137

138138
### Discussion
139139

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.
141141

142142
### Thanks
143143

144144
* [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”;
147147
* [Webpack](https://github.com/webpack/docs/wiki/hot-module-replacement-with-webpack) for Hot Module Replacement;
148148
* [Flummox](https://github.com/acdlite/flummox) for teaching me to approach Flux without boilerplate or singletons;
149149
* [disto](https://github.com/threepointone/disto) for a proof of concept of hot reloadable Stores;
150150
* [NuclearJS](https://github.com/optimizely/nuclear-js) for proving this architecture can be performant;
151151
* [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;
153153
* [React](https://github.com/facebook/react) for the pragmatic innovation.
154154

155155
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
164164
The work on Redux was [funded by the community](https://www.patreon.com/reactdx).
165165
Meet some of the outstanding companies that made it possible:
166166

167-
* [Webflow](http://webflow.com/)
167+
* [Webflow](https://webflow.com/)
168168
* [Chess iX](http://www.chess-ix.com/)
169169

170170
[See the full list of Redux patrons.](PATRONS.md)

0 commit comments

Comments
 (0)