https://github.com/redux-mvc/core
Build reusable ui modules with react and redux.
https://github.com/redux-mvc/core
framework mvc-framework react redux
Last synced: 12 months ago
JSON representation
Build reusable ui modules with react and redux.
- Host: GitHub
- URL: https://github.com/redux-mvc/core
- Owner: redux-mvc
- License: mit
- Created: 2020-07-05T04:00:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-13T18:17:44.000Z (almost 4 years ago)
- Last Synced: 2024-12-30T12:32:36.326Z (about 1 year ago)
- Topics: framework, mvc-framework, react, redux
- Language: JavaScript
- Homepage: https://redux-mvc.github.io/docs/
- Size: 1.34 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redux-mvc
Alternative react bindings framework for React and Redux.
Modular, composable, reusable.
[Docs](https://redux-mvc.github.io/docs)
[Examples](https://redux-mvc.github.io/docs/examples)
[](https://app.circleci.com/pipelines/github/redux-mvc/core?branch=master)
[](https://www.npmjs.com/package/@redux-mvc/core)
[](https://www.npmjs.com/package/@redux-mvc/core)
## Installation
# If you use npm:
npm install @redux-mvc/core
# Or if you use Yarn:
yarn add @redux-mvc/core
## Motivations
- Make an analogy with traditional MVC architecture.
- Bring back separation of concerns.
- redux is great for separation of concerns and reducing complexity, but is not modular and composable by default. Then is very hard to reuse.
- Chop big redux state trees and make atomic modules.
- Reduce the boilerplate around creating reducers, actionCreators, selectors, and wiring it all together.
- Show the value of using a general but safe framework that enforces certain architecture choices.
- Make a modular framework to be able to customize it to your needs.
- Modules run when the module context component is constructed, not before like redux.
- Bring back code splitting for redux.