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.
- Host: GitHub
- URL: https://github.com/donaldaverill/rxjs-console-logger-operator
- Owner: donaldaverill
- Created: 2017-12-14T06:54:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-11-19T02:10:38.000Z (7 months ago)
- Last Synced: 2025-12-21T19:29:22.030Z (6 months ago)
- Topics: debug, logging, observables, rxjs, rxjs-operators, rxjs6, typescript
- Language: TypeScript
- Size: 297 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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'))
```