Skip to content
This repository was archived by the owner on Jul 27, 2018. It is now read-only.

ngrx/store-devtools

Folders and files

NameName
Last commit message
Last commit date
Oct 26, 2016
Jan 19, 2017
Mar 24, 2017
Mar 1, 2016
Oct 26, 2016
Sep 14, 2016
Mar 24, 2017
Mar 1, 2016
Feb 29, 2016
Jul 18, 2017
Aug 26, 2016
Sep 14, 2016
Mar 24, 2017
Nov 4, 2016
Oct 26, 2016
Sep 14, 2016
Sep 14, 2016
Sep 21, 2016
Mar 24, 2017

Repository files navigation


This repository is for version 3.x of of @ngrx/store-devtools.


@ngrx/store-devtools

Devtools for @ngrx/store.

Join the chat at https://gitter.im/ngrx/store

Installation

npm install @ngrx/store-devtools@3.2.4 --save

Instrumentation

Instrumentation with the Chrome / Firefox Extension (Preferred)

  1. Download the Redux Devtools Extension

  2. 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 StoreModule
    StoreDevtoolsModule.instrumentOnlyWithExtension({
      maxAge: 5
    })
  ]
})
export class AppModule { }

Instrumentation with a Custom Monitor

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 StoreModule
    StoreDevtoolsModule.instrumentStore({
      maxAge: 5,
      monitor: monitorReducer
    })
  ]
})
export class AppModule { }

See @ngrx/store-log-monitor for an example monitor built for Angular 2

Contributing

Please read contributing guidelines here.