Intent to implement redux-like on top of RxJS
  • JavaScript 100%
Find a file
2017-04-25 20:19:31 +02:00
examples feat(lib): Add connect and simplify update 2017-04-25 20:17:32 +02:00
lib fix(lib): Create dispatch as a closure, that return a disposable 2017-04-25 20:19:31 +02:00
.editorconfig First commit adding git stuff 2016-03-08 14:07:44 +01:00
.gitignore First commit adding git stuff 2016-03-08 14:07:44 +01:00
LICENSE.md Add README, and a few //comments 2016-03-08 15:06:58 +01:00
package.json feat(lib): Add connect and simplify update 2017-04-25 20:17:32 +02:00
README.md Update README.md 2017-04-23 14:00:58 +02:00
rollup.config.js feat(lib): Abstract createStore 2017-04-23 16:36:50 +02:00

rxduce js-standard-style

I'm trying to solve async operations on a Redux Application. I recommend to take a look into 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.