I noticed in Meteor 1.3 that Meteor
isn’t available at the command line (it’s not global on window
. Is Meteor
now encapsulated in the new modules
system (global to app code that is also inside that scope) and not placed onto window
?
I’m not the best one to answer since other people are working on the module system, but I wouldn’t take anything in the current preview release as a solid indicator for how it will work in the final version of 1.3.
1 Like
For sure. I think it’s a good idea though, so that random scripts outside of the app’s code can’t probe for vulnerabilities (or subscribe to things they shouldn’t subscribe to, etc).
huh, without Meteor
how do we handle login or create user on the client side?
@seanh We’d be using Meteor 1.3, and we’d import Meteor into our modules like this:
import Meteor from 'meteor'
or
import Tracker from 'meteor/Tracker'
Those symbols would never be stored globally, and only given to use when we request them via the module system.
4 Likes
cool, that indeed look more modularize than before
1 Like