Common patterns with Redux-Saga

In my first blog post on this topic “What is Redux-Saga?”, I compared the basic differences between redux-saga and redux-thunk, two middleware libraries to help manage asynchronous code in our react-redux apps at Universe. If the saga pattern is unfamiliar to you, I…


What is Redux-Saga?

Redux-saga is a redux middleware library, that is designed to make handling side effects in your redux app nice and simple. It achieves this by leveraging an ES6 feature called Generators, allowing us to write asynchronous code that looks synchronous, and is very easy to test.