Taming the State

In this lesson you learn why you would consider using a third-party state management library such as Redux or MobX.

When do you need state management?

Previous chapters have shown you that state management can be a crucial topic in larger applications, as React and a lot of other SPA frameworks struggle with it. As applications get more complex, the big challenge in web applications is to tame and control the state.

How React Makes State Management simple

Compared ...