Beginning Ember.js on Rails: Part 2
cerebris.com
Beginning Ember.js on Rails: Part 2
1–8 of 8 posts
Re: Beginning Ember.js on Rails: Part 2
#2Naively, it seems like a bit of overkill. You don't need a full stack web app framework to create REST endpoints, right?
Re: Beginning Ember.js on Rails: Part 2
#3I wonder why Rails was chosen for the backend. Naively, it seems like a bit of overkill. You don't need a full stack web app framework to create REST endpoints, right?
If you're truly building a one-page style app, Rails is, as you say, probably not your first choice. Sinatra maybe?
Re: Beginning Ember.js on Rails: Part 2
#4I wonder why Rails was chosen for the backend. Naively, it seems like a bit of overkill. You don't need a full stack web app framework to create REST endpoints, right?
Re: Beginning Ember.js on Rails: Part 2
#5I wonder why Rails was chosen for the backend. Naively, it seems like a bit of overkill. You don't need a full stack web app framework to create REST endpoints, right?
Re: Beginning Ember.js on Rails: Part 2
#6I wonder why Rails was chosen for the backend. Naively, it seems like a bit of overkill. You don't need a full stack web app framework to create REST endpoints, right?
Re: Beginning Ember.js on Rails: Part 2
#7I wonder why Rails was chosen for the backend. Naively, it seems like a bit of overkill. You don't need a full stack web app framework to create REST endpoints, right?
I can't speak for others but I'm building a Rails app that could benefit from an Ember front end for a small subset of the full app. This series shows how easy it would be to 'plug in' Ember into a much broader Rails app. If you're truly building a one-page style app, Rails is, as you say, probably not your first choice. Sinatra maybe?
Re: Beginning Ember.js on Rails: Part 2
#8I wonder why Rails was chosen for the backend. Naively, it seems like a bit of overkill. You don't need a full stack web app framework to create REST endpoints, right?
Rails scaffolding creates RESTful resources by default (and Ember.js plays nicely with it too). Starting from a "blank slate" Ubuntu server install, you could have a dev server providing this groundwork in about 7 commands in under 5 minutes. If you were to do this in J2EE (nothing is stopping you), setting up the backend would take significantly longer than the frontend ideas being explained.