From c19cb2c8b6d671ba1fd0084acf1dc4ce78b6c92b Mon Sep 17 00:00:00 2001 From: "Dmytro V. Dogadailo" Date: Thu, 12 Jan 2017 22:57:00 +0200 Subject: [PATCH] Added Edux to the action-reducer-generators.md --- action-reducer-generators.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/action-reducer-generators.md b/action-reducer-generators.md index 8f1f98e..8b2e229 100644 --- a/action-reducer-generators.md +++ b/action-reducer-generators.md @@ -155,7 +155,13 @@ - **redux-scc** https://github.com/TheComfyChair/redux-scc Redux store chunk creator. It takes a defined structure and uses a set of 'behaviors' (a small collection of ways that a reducer can be updated) to create a set of actions and reducer responses that are each linked by a unique string. A set of action generators, selectors, and reducers are then returned. - + +- **Edux** + https://github.com/dogada/edux + Edux is DRY version of Redux (no constants and switches, actions and reducers are generated from single source). Edux process actions with O(1) speed instead of Redux's O(N) where N is number of reducers. Edux and Redux works well together. Redux state is single source of truth on data level. Edux changes are single source of truth on logic level. + + + #### Network Requests and APIs