Should I use Redux saga?

While I wouldn’t say Redux Saga is inherently better than any of the alternatives available, it does have a few benefits that might make you want to consider using it . Redux Saga offers a place completely decoupled from your action creators for you to handle your application’s side effects.

Read more

How do I start redux saga?

First we import our Saga from the ./sagas module . Then we create a middleware using the factory function createSagaMiddleware exported by the redux-saga library. Before running our helloSaga , we must connect our middleware to the Store using applyMiddleware . Then we can use the sagaMiddleware.

Read more