Overwrite DS.Store ember-cli
I have some code that needs to run on store.init . I tried extending the default store in app/store.js , ember-cli seems to pick it up as a store, but the object in this.store is not a store My store definition: import DS from 'ember-data'; export default DS.Store.extend({ init:function(){ console.log('watatLoL') } }); According to Peter Wagenet, this has changed in Ember Data beta 19. If you're using that version or later, the file is now app/stores/application.js (or app/application/store.js if you're using pods). Overwriting the store is the same, only the file name/location has changed. If