diff --git a/action-reducer-generators.md b/action-reducer-generators.md index 33a294e..19c378e 100644 --- a/action-reducer-generators.md +++ b/action-reducer-generators.md @@ -132,6 +132,14 @@ https://github.com/jaylone/redux-shuttle A tool for bundling reducers, action types and actions when using redux and saga +- **redux-utils** + https://github.com/jcoreio/redux-utils + Functions for creating and composing reducers and middleware efficiently + +- **redux-duet** + https://github.com/jondot/redux-duet + Redux action and handlers together, alleviate boilerplate. + #### Network Requests and APIs diff --git a/apps-and-examples.md b/apps-and-examples.md index 6600514..ccdb153 100644 --- a/apps-and-examples.md +++ b/apps-and-examples.md @@ -42,6 +42,10 @@ Note: This is not a comprehensive list of all projects using Redux, just a selec https://github.com/markerikson/project-minimek A sample app to demonstrate various useful Redux techniques, accompanying the blog series at http://blog.isquaredsoftware.com/series/practical-redux +- **Tradux** + https://github.com/miloszpp/tradux + A sample real-time trading application built with Redux and Angular 2. + #### Applications - **MapStore2** @@ -170,7 +174,7 @@ Note: This is not a comprehensive list of all projects using Redux, just a selec https://github.com/lizadaly/windrift A JS framework for writing mutable stories. Windrift was used to write Stone Harbor, an entry in the 2016 Interactive Fiction Competition. - + #### Other Application Lists diff --git a/immutable-data.md b/immutable-data.md index 1197637..5cfe94d 100644 --- a/immutable-data.md +++ b/immutable-data.md @@ -159,6 +159,10 @@ A collection of functions to perform immutable operations on plain JavaScript ob - **mori-redux** https://github.com/dynn/mori-redux createReducer and combineReducers utilities that work with Mori structures + +- **redux-utils-immutable** + https://github.com/jcoreio/redux-utils-immutable + Utilities for working with redux and immutable.js #### Alternate Data Management Concepts diff --git a/use-cases.md b/use-cases.md index 717764d..1da2a56 100644 --- a/use-cases.md +++ b/use-cases.md @@ -141,6 +141,10 @@ https://github.com/mcollis/redux-normalized-pager Store pagination results for normalized entities +- **redux-cache** + https://github.com/damassi/redux-cache + Lightweight caching for Redux (WIP) + #### Collections / CRUD - **Redux CRUD**