I have been looking at Backbone Marionette for sometime, have been mimicking parts of it for my own pure Backbone application. Looks really promising, but 1 thing that I am not sure about is the Modules structure and order in which initializers run. Mainly regarding Backbone.history.start
I am thinking I will have a top level Application that contains modules like Auth, Todo, Comments etc (I usually start with a simple todo app to try out frameworks). Each module will have its own routes. In my understanding, they will have to be initialized before I do Backbone.history.start(). Do I just trigger all modules to start in my top level Application, then start history? This will ensure module routers are initialized before starting Backbone.history. This sounds like starting potentially unneeded modules, thus slowing down the app?
Of course, most apps I know, don't need to be very large, do startup speed is probably acceptable. However I wonder whats the best practice or recommendation