What 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

What is Saga pattern react?

Now back to React. redux-saga is a library that easily manages application’s side-effects(asynchronous data request, browser-cache, any impure requests) and effectively executes with simple tests for precise failure logs . In doing so, saga uses generator function in javascript. Saga in react.

Read more