https://github.com/hermanbanken/RxFiddle
Visualize your Observables
https://github.com/hermanbanken/RxFiddle
debugger reactive-programming rx rxjava rxjs4 rxjs5 visualizer
Last synced: 18 days ago
JSON representation
Visualize your Observables
- Host: GitHub
- URL: https://github.com/hermanbanken/RxFiddle
- Owner: hermanbanken
- License: mit
- Created: 2016-09-19T22:03:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-04-15T16:46:17.000Z (about 3 years ago)
- Last Synced: 2025-03-22T08:13:36.265Z (24 days ago)
- Topics: debugger, reactive-programming, rx, rxjava, rxjs4, rxjs5, visualizer
- Language: TypeScript
- Homepage: https://rxfiddle.net
- Size: 12.3 MB
- Stars: 162
- Watchers: 13
- Forks: 9
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- my-awesome-list - RxFiddle
README
# RxFiddle
RxFiddle is a debugger for Reactive Extensions (Rx).
## Features
- [x] visualises structure of Observables in graph diagram,
- [x] visualises construction of and data flow through Observable sequences in Marble Diagrams,
- [ ] supports live fiddling with input streams,
- [ ] generates tests for Observable sequences.## Collectors
RxFiddle works by means of a visualizer and *collectors* which can parse
syntax and instrument (compiled) code to collect the lifecycle of Observables:- creation of Observable sequences
- subscriptions in a Observable sequence
- *onNext*, *onError* and *onComplete* events in Observable sequenceExisting collectors:
- [x] [JavaScript](rxfiddle-js-collector) for RxJS
- [ ] [JVM](rxfiddle-jvm-collector) for RxJava, RxKotlin and RxScala
- [ ] [Dalvik](rxfiddle-android-collector) for Rx on Android
- [ ] [Swift](rxfiddle-swift-collector) for RxSwift### Contribute
Every help is welcome improving RxFiddle, either by improving the visualiser or
creating custom collectors for your favorite Rx-library.See [CONTRIBUTING.md](./CONTRIBUTING.md)
## Footnote
RxFiddle is part of my [Masters thesis](doc).Herman Banken