Top "Redux-observable" questions

redux-observable is a redux middleware for performing side effects (epics) using RxJS.

Why use Redux-Observable over Redux-Saga?

I have used Redux-Saga. Code written with it is easy to reason so far, except JS generator function is messing …

javascript redux reactive-programming redux-saga redux-observable
redux-observable - dispatch multiple redux actions in a single epic

I'm looking for way of dispatching multiple redux actions in a single Epic of redux-observable middleware. Let's assume I have …

redux rxjs redux-observable
Cancel previous requests and only fire the latest request with redux observable

So I have use case where I update the api request when the map is moved - but it could …

rxjs redux-observable
Use fetch instead of ajax with redux-observable

In redux-observable is it possible to use isomporphic-fetch instead of Rx.DOM.ajax?

ajax redux rxjs5 isomorphic-fetch-api redux-observable
How to dispatch multiple actions from redux-observable?

I want to dispatch multiple actions from a redux-observable epic. How can I do it? I originally started with const …

javascript redux rxjs redux-observable
How to handle multiple action types in one epic? Any cons of doing the same?

Pretty new to redux-observables, rxjs and observables. Wanted to know how can I handle another action, say 'ActionTwo' in the …

redux observable rxjs5 redux-observable
RxJS v5: How to make a POST request with params?

I have some RxJS code and this is part of it: .mergeMap(action => { const user = store.getState().user; return …

javascript ajax rxjs rxjs5 redux-observable
Accessing the state from within a redux-observable epic

I am using redux to build a little fusball-manager. Basically it's a page that shows the score of both teams …

javascript reactjs redux rxjs redux-observable