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

What are the best practices for structuring a large Meteor app with many HTML template files? [closed]

As in the unofficial meteor faq, I think it pretty much explains how to structure a large app: Where should I put my files? The example apps in meteor are very simple, and don’t provide much insight. Here’s my current thinking on the best way to do it: (any suggestions/improvements are very welcome!) lib/ # … Read more