DEV Community

Discussion on: Redux or MobX for ReactJS?

Collapse
 
markuswillems profile image
Markus Willems

I personally favor Redux. Unidirectional data flow and a functional programming style is what I really like about it.

However, if you just started to use React I would opt for normal component state first (check out Lifting Up State). Then, when you felt the pain of - for example - prop drilling, I would take a look at Redux. Redux really only makes sense in bigger projects with a bunch of components.

Collapse
 
bossajie profile image
Boss A

Thank you for that. I really appreciate your comment