Ember data without Ember

Hello!

Is it possible to use Ember data without Ember and Ember cli.

Kind of:

import Store from '@ember-data/store';
 class MyStore extends Store {
 constructor() {
    super(...arguments);
    this.adapter = ... adapter
  }
}

Then add models @ember-data/model

const store = new MyStore();

and execute store.findAll('modelName');

Thanks in advance

1 Like

It’s a long term goal to allow Ember Data to be used without Ember, but I’m not sure if it’s currently possible to do so yet.

For now you might want to have a look at Orbit.js. As Ember Data it’s a client-side ORM. But it is framework agnostic.