rxLoop
rxLoop = Redux + redux-observable.
Predictable state container for JavaScript apps based on RxJS, like Redux with redux-observable middleware.
- Using RxJS instead of Redux.
- Easy study, only four apis: app.model、app.dispatch、app.getState、app.stream.
- Cancel async actions easyly.
Installation
$ npm i rxloop
Hello rxloop
;;; const counterModel = name: 'counter' state: counter: 0 reducers: { return ...state counter: statecounter + 1 ; } epics: { return action$; } ; const app = ;app; app; // sync updateapp; // async updateapp;
Documentation
Examples
Releases
License
MIT