DEV Community

Cover image for What is State management ?
Karthikeyan
Karthikeyan

Posted on • Updated on

What is State management ?

In this blog , I will be going over what is state management and why we need it. State management acts as a base, before we start playing around with state management libraries of different framework.

Let's get going

State is basically a container which holds the information about a component, on what stage it is in at the current moment.

For Example, condition of the button will be in a disabled mode if the input data entered by the user is not a valid one. This disabled to be true value will be contained in a plain javascript object which is state.

let inputState = {
disabled: true;
}
Enter fullscreen mode Exit fullscreen mode

Now with help of this value we can listen to the input values and change it back to false if the input value is expected.

The process of changing the state value is state management.

One thing which can be inferred from the above example is, state of the one UI component always depends on the other.

State management becomes complex once the application grows , as there will be no single source of truth.

What did I mean by single source of truth?

Let us just say , you have two user categories ( free and premium ) and you want restrict the user with free access to certain pages, then maintaining the state of the type of user across all the pages will result in code duplication and also it will not be a efficient.

You can use state management library or create a plain JS object which will be single source of truth and we can access the category of the user from the pages.

Some of the state management libraries

VueX -- Vue JS.
Redux, Flux , MobX -- React.
RxJS -- Angular.

Hope the information was useful. Thank you for reading and please let me know in the comments if I have missed something.

I have also attached some of the useful resources.

Resources:

  1. things-ive-learned-about-state-management-for-react-apps

  2. State management

  3. Redux Docs

  4. Props Drilling

  5. State and single source of truth

Stay Safe and Happy Coding.

Top comments (0)