In the previous chapters, you learned how to display data and how to manage user inputs, and made HTTP requests and managed routes. You can consider these skills the basic building blocks. But before you can actually start writing frameworkless code, you need to know how to manage the data (or the state) that links all of these elements together. In front-end applications or more generally, in all kinds of client applications (web, desktop, and mobile) effectively managing data is called state management .
State management doesn’t solve a new problem. Model-view-controller ...