DEV Community

Discussion on: What are some real-world scenarios where redux is needed?

Collapse
 
drmandible profile image
DrMandible • Edited

Another user mentioned redux as a tool for keeping state logic organized rather than dispersed throughout the app. I think that's probably its biggest selling point.

That said, I'm personally at a loss to understand the benefits of redux over the gold standard of state management, finite state machines and state charts. I reach for the xstate library these days.

Edit: Turns out another dev user (dever? deviant? devmeister?) is doing a tutorial on them right now: dev.to/codingdive/introducing-stat...