Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davesnx/rxduce
Intent to implement redux-like on top of RxJS
https://github.com/davesnx/rxduce
Last synced: 2 months ago
JSON representation
Intent to implement redux-like on top of RxJS
- Host: GitHub
- URL: https://github.com/davesnx/rxduce
- Owner: davesnx
- License: mit
- Created: 2015-01-13T09:11:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-25T18:19:36.000Z (over 7 years ago)
- Last Synced: 2024-10-10T18:59:20.902Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# rxduce [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)
I'm trying to solve `async operations` on a Redux Application. I recommend to take a look into [Mobx](https://github.com/mobxjs/mobx).
The idea was to create a state of an Observable, and a `Rx.Subject` of actions (can be sync or async).
The state listens to the `actionStream` and maps to a update (or reducer) pure functions that changes the state with the RxJS interface, similar to [redux-observable](https://github.com/redux-observable/redux-observable).