An open API service indexing awesome lists of open source software.

https://github.com/donaldaverill/rxjs-console-logger-operator

RxJS operator for printing Observable values to the console.
https://github.com/donaldaverill/rxjs-console-logger-operator

debug logging observables rxjs rxjs-operators rxjs6 typescript

Last synced: 5 months ago
JSON representation

RxJS operator for printing Observable values to the console.

Awesome Lists containing this project

README

          

# Observable#consoleLogger

[RxJS 7](https://github.com/ReactiveX/rxjs) operator for printing Observable values to the console.

```ts
import { of } from 'rxjs'
import { debug /* OR consoleLogger */ } from 'rxjs-console-logger'

of([1, 2, 3, 4]).pipe(debug('printMe'))
```