Devtools for @ngrx/store.
npm install @ngrx/store-devtools@3.2.4 --save
Download the Redux Devtools Extension
In your root Angular module import
StoreDevtoolsModule.instrumentOnlyWithExtension():
import{StoreDevtoolsModule}from'@ngrx/store-devtools';
@NgModule({imports: [StoreModule.provideStore(rootReducer),// Note that you must instrument after importing StoreModuleStoreDevtoolsModule.instrumentOnlyWithExtension({maxAge: 5})]})exportclassAppModule{}To instrument @ngrx/store and use the devtools with a custom monitor you will need to setup the
instrumentation providers using instrumentStore():
import{StoreDevtoolsModule}from'@ngrx/store-devtools';
@NgModule({imports: [StoreModule.provideStore(rootReducer),// Note that you must instrument after importing StoreModuleStoreDevtoolsModule.instrumentStore({maxAge: 5,monitor: monitorReducer})]})exportclassAppModule{}See @ngrx/store-log-monitor for an example monitor built for Angular 2
Please read contributing guidelines here.