Skip to content

Commit

Permalink
Organize the Redux techniques page
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed May 29, 2016
1 parent 0fc8982 commit de829df
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions redux-techniques.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
### Redux Techniques



#### Middlewares
- **Two Weird Tricks with Redux**
http://jlongster.com/Two-Weird-Tricks-with-Redux
https://news.ycombinator.com/item?id=11488633
Expand All @@ -14,10 +16,37 @@
https://blog.boldlisting.com/connecting-redux-to-your-api-eac51ad9ff89
Describes imperative and declarative approaches to managing request data and metadata

- **Fix Ugly JSON Api Responses With Redux Middleware**
http://blog.benwiley.org/fix-json-responses-redux-middleware/
Sets up a sample project that requests JSON data, then shows how to use some custom middleware to transform the response.


#### Debugging

- **Hot reloading and time travel debugging: what are they?**
https://code-cartoons.com/hot-reloading-and-time-travel-debugging-what-are-they-3c8ed2812f35
A short but informative article describing these concepts and why they're useful.

- **Debugging is in Flux**
https://vimeo.com/166342150
A fantastic talk that demonstrates use cases and examples for time-travel debugging in a Flux-style architecture, including crash reporting. The demo is built in Alt, but obviously completely applies to Redux as well.

- **Drew Bug**
https://www.youtube.com/watch?v=n8vkg_RVIRo
A video demonstrating a Redux crash reporter and time travel debugger.



#### Other
- **Applying Redux Reducers to Arrays**
http://blog.scottlogic.com/2016/05/19/redux-reducer-arrays.html
Looks at one way to implement the classic "multiple instances of one connected component" issue in Redux.

- **Checking React and Redux Code with Flow**
http://djcordhose.github.io/react-intro-live-coding/2016_jsunconf.html#/
A slideshow that shows the basics of adding type information to Redux-based code

- **Ajax Polling in React with Redux and Sagas**
http://notjoshmiller.com/ajax-polling-in-react-with-redux/
http://notjoshmiller.com/ajax-polling-part-2-sagas/
Covers a couple different ways to manage the logic for AJAX polling.

0 comments on commit de829df

Please sign in to comment.