DEV Community

Discussion on: Do you need a State Management Library?

Collapse
 
okrohan profile image
Rohan Salunke • Edited

I see some comment against Context API. It's definitely a feasible state management solution. Most of the current state management libraries already use Context API internally. In the end it's all about your use case, no one state management methodology is perfect or fits all purpose. It's all contextual based on factors like.

  • UI and Data coupling
  • Integration with UI
  • Server paradigm

This article might help you choose the right solution based on your use case. dev.to/swyx/why-do-webdevs-keep-tr...