I am building my first large Backbone + Requiere APP and i came across a scenarios where it would just make sense to access some kind of an "app wide" scope. I was thinking of making a new namespace in the global scope, something like:
window.APP = {
someProp : someValue,
....
}
Are there any other options / good practices ?
Thanks