https://github.com/jacksteamdev/rxjs-log
Easily log RxJS Observables to the console with this operator
https://github.com/jacksteamdev/rxjs-log
Last synced: 3 months ago
JSON representation
Easily log RxJS Observables to the console with this operator
- Host: GitHub
- URL: https://github.com/jacksteamdev/rxjs-log
- Owner: jacksteamdev
- License: mit
- Created: 2019-04-01T18:53:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-30T19:23:27.000Z (about 2 years ago)
- Last Synced: 2025-02-13T11:23:58.620Z (5 months ago)
- Language: JavaScript
- Size: 149 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `@bumble/rxjs-log`
A simple console.log operator to use with RxJs. Now includes types!
# Install
```sh
npm i @bumble/rxjs-log -D
```# Usage
```javascript
import { log } from '@bumble/rxjs-log'fromEvent(document, 'click')
.pipe(log('document clicked'))
.subscribe()// -> document clicked { MouseEvent... }
```