I have been studying emberjs and tried to get it to work with the django rest framework, without much luck.
Here is what I have found:
- django rest framework does not natively spit the json format that Ember expects
- ember django rest framework adapter is based on ember-data, which leads to next point
- ember-data is not production ready, and the rest framework adapter does not work on the latest ember-data
- someone mentioned to roll your own without using ember data in this link http://discuss.emberjs.com/t/ember-data-endless-frustration/893/2 but it makes me feel like doing things twice since I already defined my models in django.
My question is, is this combination ready for prime time and has anyone used this combination for any production sites?