I'd like to use Session.setDefault
to set some default values for my Meteor app.
I had thought that based on the load order of Meteor files in which the top level lib
folder is loaded first, the best place for this code would be lib/defaults.js
file. However, when I run my code, I get a Session is not defined
error
Where is the best place to put this code such that it will work on server and client?