DEV Community

Discussion on: Async React Basics with Redux-thunk & Redux-saga

Collapse
 
lexlohr profile image
Alex Lohr

Thanks for the nice article. Since you're already familiarized yourself with thunks and sagas, you should probably learn about epics in redux-observables. I find them a cleaner abstraction of side effects in redux than the other options. The only problem is that they are so powerful, you'll soon end up using epics for everything.

Collapse
 
bnorbertjs profile image
Norbert Braun

Hi Alex, thanks for the hint I'll definitely check it out!

Collapse
 
benjamindaniel profile image
Benjamin Daniel

Everyone keeps recommending redux-observables, will definitely check it out.