Reputation: 2115
This might be sort of a dumb question, but is it possible/advisable to use ember data without ember for a command line node.js app I'm writing? I already have a set of Ember Data models in my frontend project that I'd love to reuse.
Upvotes: 3
Views: 430
Reputation: 5517
Ember-data uses features of the Ember itself, or, more precise, it is based on ember and will be merged into it in some point at future, thus you will have to include the ember library and its dependencies(handlebars) for ember-data to work, but after that you can only use parts that you need, like models.
Upvotes: 2