How does Meteor’s reactivity work behind the scenes?
So it’s actually rather straight forward, at a basic level there are 2 types of functions involved: Functions that create a reactive context (reactive function) Functions that invalidate a reactive context (invalidating function) Functions that can do both. (I lied there are 3) When you call a reactive function it creates a context that meteor … Read more