Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 914 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 914 Bytes

@ngrx/store-devtools

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

Devtools for @ngrx/store.

Installation

npm install @ngrx/store-devtools --save

Instrumentation

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

Contributing

Please read contributing guidelines here.