Using the Parse API (parse.com) with ember.js models

My goal is to implement the Ember.js interface using the Parse backend. I read in the documentation for Parse that it is based on backbone.js and can be easily integrated into the base application with a little code change.

Our JavaScript SDK is based on the popular Backbone.js framework. It is compatible with existing Backbone applications with minimal changes on your part.

Question: Can Parse objects be just as easily integrated into an Ember application? If so, how?

+4
source share
3 answers

You can see how they solved the combination of Ember and Parse.com at Neptune . He claims to have been

The base project is designed to provide a solid foundation for building Node / Ember / Parse stack

However, I doubt that you can easily integrate Parse objects into the Ember app just like with Backbone, but that certainly seems doable.

+2
source

There were a lot of updates in my Ember Data Adapter for Parse: http://clintjhill.github.com/ember-parse-adapter/

+5
source

http://clint-hill.com/2012/12/17/ember-parse-data-adapter/ is an Ember adapter for Parse (I have not used it, but it would be interesting to know how it works).

+1
source

All Articles