0.0.7 • Published 7 years ago

ns-ngrx-debugger v0.0.7

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Nativescript @Ngrx/Store Debugger

A minimal Nativescript (v3+) debugger for @ngrx/store & @ngrx/effects.

How To

  • Install.
npm i ns-ngrx-debugger --save
  • In your App module.
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core";
import { NativeScriptModule } from "nativescript-angular/nativescript.module";
import { NSNgRxDebuggerModule } from "ns-ngrx-debugger";
import { AppComponent } from "./app.component";

@NgModule({
  declarations: [ AppComponent ],
  bootstrap: [ AppComponent ],
  imports: [
    NativeScriptModule,
    NSNgRxDebuggerModule
  ],
  schemas: [ NO_ERRORS_SCHEMA ]
})
export class AppModule { }
  • In your Component. (Root component preferably).
<ActionBar title="Hello"></ActionBar>

<ns-ngrx-debugger [hidden]="false"></ns-ngrx-debugger>
  • Thats all. No dependencies.

Set up your @ngrx/store however you want. You get a log of all Actions going through the store and an option to dump States and Sub-States of the Store at request on the terminal.

License

MIT

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.5-a

7 years ago

0.0.1-b

7 years ago

0.0.1-a

7 years ago

0.0.4-a

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago