Hacker News new | ask | show | jobs
by yourad_io 1508 days ago
If you ever have to go back to react, take a look at mobx

It is very uncomplicated

2 comments

IMO mobx has better DX than redux, not sure why it's less popular. Probably because react community prefer FP over OOP?
Some graphQL clients can eliminate the need for these state management tools. Everything becomes just graphQL queries and mutations with very sophisticated caching. When you mutate some resource, other components that have queries that are affected by the mutation will re render with the new state.