Which recent, public, medium-sized Ember.js applications do you recommend for learning about usage patterns by reading its implementations?
Which recent, public, medium-sized Ember.js applications do you recommend for learning about usage patterns
Share
I’d recommend the Travis CI project – it uses Ember on the client side and Rail 3 on the server. While it doesn’t use the latest Ember features it has very good foundations. You’ll find the client-side code in a separate repo travis-web.
I also found reading through @ebryn’s “New Twitter“ helpful although it is older (Sproutcore 2) and smaller/simpler than Travis CI.
Update: Ember has gone through a number of big changes leading up to their 1.0 release so a lot of older example apps use deprecated APIs and are no longer representative of best practices. A new example to check out is Discourse (https://github.com/discourse/discourse) a large webapp built by Jeff Atwood and Robin Ward. Also, check out @trek’s Ember Todos, a version of TodoMVC with a touch more process (https://github.com/trek/ember-todos-with-build-tools-tests-and-other-modern-conveniences)