-
Notifications
You must be signed in to change notification settings - Fork 0
Home
TODO Fill this one later
- Router
- Routes
- Models
- Views
- Components
- Templates
Here are some useful resources to getting along with Ember. I'll try to keep them as most updated as possible
- Ember Guides http://emberjs.com/guides/ The ember guides are the place to start when wanting to getting started with Ember. It has some great docs and examples on how Ember works. The 28 minutes Tom Dale's screencast available on this Guide will provide some beginning guidance as well.
- DevMynd Blog Post http://www.devmynd.com/blog/2013-3-rails-ember-js TODO Review here
- Smashing Magazone Post http://coding.smashingmagazine.com/2013/11/07/an-in-depth-introduction-to-ember-js/ TODO Review here
- Reddit Ember.JS http://www.reddit.com/r/emberjs/ Reddit has some Q&A answers on how stuff is made with Ember. Take a look, you may learn something
- CodeSchool Ember.JS Course http://ember.codeschool.com/ TODO Review here later, Put here the PDFs?
Ember.js Official Site - http://emberjs.com/ Ember.js Guides - The guides provide a walk-through with concepts similar to those discussed in the course. - http://emberjs.com/guides/ Ember.js API - Object level documentation on each Ember object. - http://emberjs.com/api/
Ember Extension https://github.com/tildeio/ember-extension Download the Ember Inspector for Chrome or Firefox Developer Tools. Ember Watch http://emberwatch.com/ Constantly updated list of Ember resources. Ember Fest 2013 Videos http://emberfest.eu/munich The videos from this conference are up and available for free.
NOTES:
Colocar o /index template e o Controller para controllers 'vazios'
find is a convenience wrapper for findAll, findQuery and findById.
findAll will return all the records of a specific type (this will trigger a request to the server) all is basically the same but uses the cache, so if you have records in your store, no request will be made findQuery is to return a subset from your server findById returns a single object
code block