From de829df26577ff5328c59d8371b669339f00f4f5 Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Sun, 29 May 2016 19:25:15 -0400 Subject: [PATCH] Organize the Redux techniques page --- redux-techniques.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/redux-techniques.md b/redux-techniques.md index 0febef5..01bb0ab 100644 --- a/redux-techniques.md +++ b/redux-techniques.md @@ -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 @@ -14,6 +16,17 @@ 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. @@ -21,3 +34,19 @@ - **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. \ No newline at end of file