Ember data in standalone cli node.js app

This may be kind of a silly question, but is it possible / advisable to use ember data without ember for the node.js app command line I'm writing? I already have a set of Ember Data models in my frontend project that I would like to reuse.

+3


source to share


1 answer


Ember-data uses features of Ember itself, or more precisely, it is based on ember and will be merged into it at some point in the future, so you will need to include the ember library and its dependencies (rules) to work with ember data. but after that you can only use the parts you need, like the models.



+2


source







All Articles