Let's say I have a web application - a large, complex application for rails, like an accounting application. I see the use of multiple applications with one page, rather than the usual routing pages. For example, I see that the user is better served by an intuitive single-page / dynamic application for:
- Creating Bank Reconciliation
- Create an invoice
- Filling out the time report
- etc..
These are all great single-page apps ...
All ember applications that I see are one page and one goal.
I want to have many one-page applications built with ember. How does it look in relation to:
Routes: I will have a combination of server routes and client routes. How will it look in Amber? To serve different Ember applications, each with its own application router and routes?
Templates: will all my "applets" be compiled and ported to the client on boot? Or can I use require.js and load each application with one page, depending on what they are aimed at? ...
Can anyone help with these two questions? Thanks in advance!
Daniel D
source share