@ngrx/store-devtools

WebJar for @ngrx/store-devtools

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

ngrx__store-devtools
Last Version

Last Version

3.2.3
Release Date

Release Date

Type

Type

jar
Description

Description

@ngrx/store-devtools
WebJar for @ngrx/store-devtools
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/ngrx/store-devtools

Download ngrx__store-devtools

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/ngrx__store-devtools/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>ngrx__store-devtools</artifactId>
    <version>3.2.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/ngrx__store-devtools/
implementation 'org.webjars.npm:ngrx__store-devtools:3.2.3'
// https://jarcasting.com/artifacts/org.webjars.npm/ngrx__store-devtools/
implementation ("org.webjars.npm:ngrx__store-devtools:3.2.3")
'org.webjars.npm:ngrx__store-devtools:jar:3.2.3'
<dependency org="org.webjars.npm" name="ngrx__store-devtools" rev="3.2.3">
  <artifact name="ngrx__store-devtools" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='ngrx__store-devtools', version='3.2.3')
)
libraryDependencies += "org.webjars.npm" % "ngrx__store-devtools" % "3.2.3"
[org.webjars.npm/ngrx__store-devtools "3.2.3"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

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

Click here for the latest version (4.x)


@ngrx/store-devtools

Devtools for @ngrx/store.

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

Installation

npm install @ngrx/[email protected] --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.

org.webjars.npm

ngrx

Reactive Extensions for Angular

Versions

Version
3.2.3