|
|
|
|
|
by softfalcon
1551 days ago
|
|
MobX from a quick Google seems to resemble the old Knockout.js We use Relay to define our state management, trigger global updates across many components, and also query/mutate our data. Does MobX have a way to do the global state management that Relay does? I’m curious because after using Relay, I’ve found most other types of state management to feel extremely heavy with boiler plate code. Thoughts? |
|
[0] Technically, it wraps all the different data structures in Proxies etc as soon as they get assigned into an observable structure. But the goal is for you to never have to think about them as anything other than plain data, and that abstraction very rarely leaks.