I have StoreA and StoreB that need data from StoreA, do some calculation and store the stats. Anytime StoreA changes, StoreB do the calculations and store the latest stats.
Do you know how to implement this in NuclearJS?
I was thinking to use getters, since they have the ability to declare data dependency, but getters don't have a state that can store data.