Guide to choosing state management library for your next project

Guide to choosing state management library for your next project

Β·

6 min read

Read the original post from thanhle.blog/blog/guide-to-choosing-state-m..

Why should you read this article?

  • There is a set of criteria when choosing a library for Frontend State Management
  • What is state management?
  • What does state management care about?
  • Have a bunch of reasons to drop Redux

Usually, people who find this post gonna be in one of two groups

  1. A Frontend engineer is too tired, suffer from redux πŸ˜΅β€πŸ’«
  2. Are you just starting out in frontend and want to learn more about state management

If you're in group 1 then... Great, I'm writing this post with 80% of my energy wanting to get rid of redux πŸ˜„. If you belong to group 2, this post will help you have more perspectives on state management, how to act cool with colleagues

So what the hell is State management?

image.png

If you find "what is state management" on Google, there are quite a few definitions, but it can be summarized into two main ideas as follows:

  1. ☠️ State is the skeleton of the application
  2. πŸƒ State management is to manage that skeleton

It's fuking simple, right?

So which state management to choose?

βš›οΈ In this part, I only focus on React, because my current job is focusing on React.

Short: Basically you don't need any state-management library, React + ReactContext + API query library is enough πŸ€·β€β™‚οΈ

People often choose Redux before they need it. β€œWhat if our app doesn’t scale without it?” Later, developers frown at the indirection Redux introduced to their code. β€œWhy do I have to touch three files to get a simple feature working?” Why indeed!

Basically, most of your state is only shared in one feature, so it will be encapsulated in a route (eg: /users, /posts). Therefore, for each route, we only need one ReactContext to handle 80% of cases.

Some features will need data users, if so, do we have to query users every time? Most modern query libraries solve this case for you by caching. Try swr or react-query

If things start to get complicated, add libraries like Recoiljs, Jotai. These libraries can be added and easily replaced useState by Search & Replace.

Don't complicate things when it's simple, prepare for it.

Long:

Features

image.png

State also has many different types, so there are also many different types of classification, but I found this article is really good at state classification.

Some best practices

  • Form state: Do not move it to the global state/store .... whatever. Hey, it's best in just one component. So it react-hook-form is enough.

  • Navigation state: react-router is almost the default in every project, better we ignore it. If you want to integrate with the global state, the best sync direction is Navigation state β†’ Global state. This case is often seen when making a search page with a filter

Ok we have 3 guys left

  1. Logical state
  2. Server state
  3. Browser state

πŸ’‘ *That means we need to find a state management library to manage the Logical state, Server state, and Browser state*

Easy to add

A good library, for me, DX must be good, I don't want to spend half a day just trying to figure out how to integrate it into my app.

Since state management, in particular, is a complicated thing, so of course, it's complicated to add, but don't make it any more complicated... Redux 😑

However, this part only needs to be done a few times when coding a new project, so this criterion is only slightly important.

Easy to write, easy to understand

Don't force yourself to code a normal use case: Query API β†’ Render list user in the following step:

  1. Dispatch query action with keyword
  2. Write a reducer that takes a query, then dispatches a saga action
  3. Write action sagas
  4. Write 2 more reducers for sagas succeed case and fail case
  5. If successful, merge the received data into the state tree
  6. Mapping state into UI

This is the job that I find the most de-optimized that most frontend engineers have to do. It's true that "people make it complicated", a good library is a library that must help devs and "enjoy the moment".

In addition, I don't have to spend all day explaining to a Junior that the data will go through these steps, and he replied "it's too confusing 😭", and then I can't hide when it doesn't work.

πŸ’‘So easy to write also means easy to understand

Community = Easy to debug/enhance

Community is not natural but is always a criterion that everyone cares about when choosing Library, Framework, ....etc

Community is the part that can cover lots of factors.

Follow the doc not add lib β†’ search google β†’ done. Can't write β†’ search google β†’ done.

So the power of a library comes from the community that supports it, and Redux is on-top in this criteria

Performance

Often core libraries like this can't, or are very difficult to replace when you realize: "this library is running slow, I can't optimize"

Therefore, Performance is a criterion to consider when this is a long-term project and has a huge future expansion.

Performance can be divided into 2 criteria:

  1. Load time - often depends on library size, network,...
  2. Interactive time - usually depends on the "intrinsic" of that library

The state management focuses mainly on data logic, so the part Interactive time is the most important. Especially in react context, you need to pay attention to how it triggers re-render component when the state is updated

image.png

⚠️ If your project has a small to medium scope, you should not care about this. I think the scope of this type of project should be concerned with the code so that it is fast and easy to understand. Optimized but only 10ms faster is not worth the trade-off. I had to fix a lot of small and unpredictable bugs because the previous coder focused on optimizing too early!

What type of project is it suitable for?

It is not natural that there are so many state-management libraries, simply for two reasons:

  1. They are tired of Redux 😫
  2. Depending on the project with different complexity, there will be suitable tradeoffs β†’ create a library suitable for that tradeoff

πŸ‘‰ This is the most important criterion that I see the difference between a "technology enthusiast" and a "pragmatic technology enthusiast". I met some people who really liked new technology, this new one was so cool but he accidentally forgot, that cool thing is never applied in the project, sometimes it's also an anchor for the team to move forward πŸ™ƒ

Result

This is the result of my assessment after working on a real project with some of the top libraries in this field, but this is just a personal perspective, do your own research.

image.png

🚫 Please! Don't use Redux anymore - Redux only handles well Logical state

  • If you want to add server state, add redux-saga, or redux-thunk go! - - At the same time, spend an extra day reading the document to see what they are.
  • 1 day to put them together, and 1 week to debug why not run πŸ™‚
  • Sticking to react? The extra redux-react
  • App after a while of coding, it runs slow? Append reselect

It is too much to read, too much to code and learn to manage the state. In fact, redux is the most de-optimize factor in the frontend stack

image.png

Hopefully, through this post, you will have an overview of state management and how it is used in react. And especially, please, don't use redux if it doesn't fit anymore

Β