From SEO to a highly performant infinite scrolling implementation, I will show you a handful collection of tips & tricks gathered by working on the largest Ember.js open-source application: Discourse.
PreloadStore.get("topic", function() { // hit the API return $.ajax("/topics/" + id + ".json"); }).then(function(result) { // instanciate a Topic return Discourse.Topic.create(result); }); }