ngrx-inspector
v0.0.7
Published
Angular library that enables logging and monitoring of NgRx actions and state changes via the NgRx Inspector Chrome DevTools extension.
Downloads
591
Maintainers
Readme
NgRx Inspector
DevTools bridge for inspecting NgRx actions and state changes in Chrome.
This lightweight Angular library connects your application to the NgRx Inspector Chrome DevTools extension, enabling real-time monitoring of dispatched actions and store state.
✨ Features
- 🔎 Inspect all dispatched NgRx actions
- 🧠 View full store state snapshots
- ⚡ Real-time action stream monitoring
- 🪶 Lightweight and zero-config
- 🌳 Tree-shakable and dev-mode only
- 🔌 Works with standalone Angular apps
📦 Installation
Install the companion bridge library:
npm install ngrx-inspectorRegister the provider:
import { provideNgRxInspector } from 'ngrx-inspector';
bootstrapApplication(AppComponent, {
providers: [provideNgRxInspector()],
});