Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Ember really a single page app?

I have been studying Ember.js for about a week now and all examples I studied were single page apps. I have been told to work on a project which expands more than 30 pages and I have no idea what the directory structure would be and if Ember is the best tool as I have never seen an application that links to other pages in the project?

like image 793
inputError Avatar asked Mar 26 '13 18:03

inputError


1 Answers

Yes, ember is a single page application, since you only go to one page, it loads the app then you don't need to fetch anymore pages from the server the ember app handles everything. For bigger apps like the one you're suggesting, you'd put each object type (models, controllers, routes, templates, views, etc...) into their own directory for organization.

like image 67
spullen Avatar answered Sep 28 '22 09:09

spullen