Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacksteamdev/rxjs-log
Easily log RxJS Observables to the console with this operator
https://github.com/jacksteamdev/rxjs-log
Last synced: 14 days 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-30T19:23:27.000Z (over 1 year ago)
- Last Synced: 2024-11-02T13:21:24.559Z (2 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... }
```