Meteor: difference between names for collections, variables, publications, and subscriptions?

Let’s distinguish between the different names you might have to deal with when programming Meteor: Variable names, such as Posts = new Meteor.Collection(…). These are used only so your code knows how to access this variable. Meteor doesn’t know or care what it is, although the convention is to capitalize. Collection names, such as new … Read more