DEV Community

Discussion on: Async actions in Redux with RxJS and Redux Observable

Collapse
 
harishboke profile image
Harish

Thanks @andrej for great details.

Incase of current version of redux-observable it throws an error : I have fixed with the help of
redux-observable.js.org/MIGRATION....

`
const epicMiddleware = createEpicMiddleware();
const store = createStore(rootReducer, applyMiddleware(epicMiddleware));

epicMiddleware.run(rootEpic);
`

Current Dependencies:
{"redux": "^4.0.4",
"redux-observable": "^1.1.0",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.5.3"}