DEV Community

Discussion on: Do you need a State Management Library?

Collapse
 
rakeshsinghjamwal profile image
rakeshsinghjamwal • Edited

Honestly, I haven't still learned any state management library yet. I am still working with context api, useReducer and yet don't feel the need to use one. But may be in one of the upcoming projects I will be using one. More than a state management library I am more keen to learn data fetching library like react-query.

Collapse
 
evanburg profile image
Evan Burgess

I largely agree with this. Only on very large projects where complex state management is necessary do I ever reach to implement Redux or alternatives.
React Context provides a great interface that many will feel comfortable with out of the box and will be enough in about 80% of scenarios really.