quarrant / mobx-persist-store

Persist and rehydrate observable properties in mobx store.
268 stars 14 forks source link

[Question] Does this observe changes recursively in Mobx #87

Open jtwigg opened 2 years ago

jtwigg commented 2 years ago

Mobx is great for only observing changes for things I care about at the "leaf" notes and not bubbling of observe events for the root nodes.

but for serialization, I need the opposite: If anything in the object graph changes, I want to queue a serialization event (albeit with _.throttle enabled)

Does this library persist to local storage if ANYTHING changes in the graph?