Devtools for @ngrx/store.
npm install @ngrx/store-devtools --save
To instrument @ngrx/store and use the devtools, you will need to setup the instrumentation providers using instrumentStore()
:
import {instrumentStore} from '@ngrx/store-devtools';
bootstrap(App, [
provideStore(reducer),
instrumentStore({
monitor: monitorReducer,
maxAge: 5
})
]);
See @ngrx/store-log-monitor for an example monitor built for Angular 2
Please read contributing guidelines here.