Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@bayerjs/rxjs-debug

SolarLiner1MIT0.3.0-alpha.1TypeScript support: included

Debug operator for observables

bayerjs, rxjs, observable, debug

readme

@bayerjs/rxjs-debug

Debug RxJS Observables with the debug package. Used internally by the Bayer.js library to, well, debug observables.

Usage

const values$ = of(something);
values$.pipe(debug("@bayerjs/core", "Value from something"));

The debug operator will use the first argument as the name for debug, and the second as a message to print on every value, as well as when erroring out or completing.