Redux-Saga is a library primarily aimed to make application side effects like asynchronous data fetching and accessing impure browser cache . It is very easy to manage and efficient to execute. With Redux-Saga, it is easy to test and handle failure effortlessly.
Read moreWhat is redux saga call?
The redux-saga middleware takes care of executing the function call and resuming the generator with the resolved response. This allows us to easily test the Generator outside the Redux environment. Because call is just a function which returns a plain Object .
Read more