I never found an answer that really hit me so I'm just thought I'd put out this question and see what people thought. Here are the details of my app so far:
- Backend: Php Api serving up JSON
- Frontend:
Express to serve up login / sales / signup / app pages
Backbone / AMD to serve up the single page application
Questions:
- How should I scaffold this application?
- I will have backbone views for the signup and login page that work through express to connect to the API...where should these be and/or is this overkill?
All authentication happens through the api which passes back a session token.