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

https://github.com/jerry-hong/rx-devtools

DevTools for RxJS
https://github.com/jerry-hong/rx-devtools

chrome chrome-extension devtools rxjs

Last synced: 8 months ago
JSON representation

DevTools for RxJS

Awesome Lists containing this project

README

          

# Rx Devtools

> This is preview version

![](http://i.giphy.com/l0Heb67CJnRLoaR0s.gif)

## Usage

```javascript
import { Observable } from 'rxjs';

Observable.prototype.debug = window.rxDevTool();

Observable.interval(1000).take(5)
.debug('source1')
.map(x => x + 1)
.debug('source2')
.subscribe(function() {})
```