Setup a store
To create a store we need to import and use the NgStore
class.
import NgStore from 'angularjs-store';
const initialState = { count: 0 };
const counterStore = new NgStore(initialState);
Make the store injectable by attaching it to AngularJS service. This will make our store available everywhere in our app. In the example below we named it CounterStore
.
import NgStore from 'angularjs-store';
angular
.module('App', [])
.factory('CounterStore', function CounterStore() {
const initialState = { count: 0 };
const counterStore = new NgStore(initialState);
return counterStore;
});
Last updated
Was this helpful?