This may be extremely noobish, but I couldnt hold this doubt, In ember we write all our HTML using handlebar templates which is javascript, so if I have n different pages then I'd have say n handlebar templates, Also each template is an Object (I used build tools so I have this hash Ember.TEMPLATES which stores all my templates)
More Templates => More Properties in Ember.TEMPLATES Hash => My App.js would be larger in size, also much memory is used to hold that Hash
First doubt is as we are shipping the entire javascript all at once, it will increase the load time of the application, the plus point is the web-application interaction is much faster once it is loaded
Also as much memory is used to hold the Hash, web application will use much resources.
Firstly, is there anything wrong with my assumptions ? if not then is it the price we pay for having much interactive web applications ?