KO
|
EN
gitlite โ search
Search
#java
#python
#dsh-plugin
#deepseek-harness
#android
#php
#c-plus-plus
#game
#ai-agents
#demo
#ai
#dsh
store-devtools
โ 325
Open GitHub โ
Developer Tools for @ngrx/store
Download README (.md)
Explore Similar Repositories
EFSecondLevelCache.Core
:
Entity Framework Core Second Level Caching Library
airflow-rest-api-plugin
:
A plugin for Apache Airflow that exposes rest end points for the Command Line Interfaces
ngrx-toolkit
:
Various Extensions for the NgRx Signal Store
aquarium-vim
:
๐ Aquarium, a simple vibrant dark theme for vim ๐
aecor
:
Pure functional event sourcing runtime
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
store-devtools
?
Download (.md)
--- # This repository is for version 3.x of of @ngrx/store-devtools. # [Click here for the latest version (4.x)](https://github.com/ngrx/platform) --- # @ngrx/store-devtools Devtools for [@ngrx/store](https://github.com/ngrx/store). [](https://gitter.im/ngrx/store?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ## Installation `npm install @ngrx/store-devtools@3.2.4 --save` ## Instrumentation ### Instrumentation with the Chrome / Firefox Extension (Preferred) 1. Download the [Redux Devtools Extension](http://zalmoxisus.github.io/redux-devtools-extension/) 2. In your root Angular module import `StoreDevtoolsModule.instrumentOnlyWithExtension()`: ```ts 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()`: ```ts 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](https://github.com/ngrx/store-log-monitor) for an example monitor built for Angular 2 ## Contributing Please read [contributing guidelines here](https://github.com/ngrx/store-devtools/blob/master/CONTRIBUTING.md).