https://github.com/link-intersystems/redux-middlewares
Redux middleware tools for your project.
https://github.com/link-intersystems/redux-middlewares
middleware reducer redux state-management
Last synced: 5 months ago
JSON representation
Redux middleware tools for your project.
- Host: GitHub
- URL: https://github.com/link-intersystems/redux-middlewares
- Owner: link-intersystems
- License: mit
- Created: 2021-09-06T13:56:09.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-09T12:59:57.000Z (almost 4 years ago)
- Last Synced: 2025-02-01T06:16:52.509Z (5 months ago)
- Topics: middleware, reducer, redux, state-management
- Language: TypeScript
- Homepage:
- Size: 801 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Redux Middlewares Library



[](LICENSE.md)A collection of middlewares for Redux.
## State Change Middleware
The state change middleware allows you to execute reducers as an effect of a state change. It introduces a kind of state listener concept to the Redux store that can be configured with a domain specific language.
stateChangeMiddleware
.whenStateChanges((state) => state.counter)
.thenDispatch({ type: "text", payload: "changed" });Go to the [state change middleware documentation](src/state/README.md) for details.