All Projects → moroshko → Rxviz

moroshko / Rxviz

Licence: mit
Rx Visualizer - Animated playground for Rx Observables

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Rxviz

Marble
Marble.js - functional reactive Node.js framework for building server-side applications, based on TypeScript and RxJS.
Stars: ✭ 1,947 (+32.36%)
Mutual labels:  reactive, stream, rxjs, observable
rxrest
Reactive rest library
Stars: ✭ 33 (-97.76%)
Mutual labels:  reactive, rxjs, observable
Qactive
Reactive queryable observable framework.
Stars: ✭ 147 (-90.01%)
Mutual labels:  reactive, observable, rx
Ngx Restangular
Restangular for Angular 2 and higher versions
Stars: ✭ 787 (-46.5%)
Mutual labels:  reactive, rxjs, observable
Redux Most
Most.js based middleware for Redux. Handle async actions with monadic streams & reactive programming.
Stars: ✭ 137 (-90.69%)
Mutual labels:  reactive, rxjs, observable
Kefir
A Reactive Programming library for JavaScript
Stars: ✭ 1,769 (+20.26%)
Mutual labels:  reactive, stream, observable
mst-effect
💫 Designed to be used with MobX-State-Tree to create asynchronous actions using RxJS.
Stars: ✭ 19 (-98.71%)
Mutual labels:  rxjs, stream, observable
redrock
Typesafe, reactive redux
Stars: ✭ 14 (-99.05%)
Mutual labels:  reactive, rxjs, rx
rx-ease
Spring animation operator for rxjs 🦚✨
Stars: ✭ 16 (-98.91%)
Mutual labels:  reactive, rxjs, observable
callbag-rs
Rust implementation of the callbag spec for reactive/iterable programming
Stars: ✭ 25 (-98.3%)
Mutual labels:  reactive, stream, observable
axios-for-observable
A RxJS wrapper for axios, same api as axios absolutely
Stars: ✭ 13 (-99.12%)
Mutual labels:  rxjs, observable, rx
React Eva
Effects+View+Actions(React distributed state management solution with rxjs.)
Stars: ✭ 121 (-91.77%)
Mutual labels:  reactive, rxjs, observable
Rxios
A RxJS wrapper for axios
Stars: ✭ 119 (-91.91%)
Mutual labels:  rxjs, observable, rx
Rx React Container
Use RxJS in React components, via HOC or Hook
Stars: ✭ 105 (-92.86%)
Mutual labels:  rxjs, observable, rx
Rx Connect
Glue your state and pure React components with RxJS
Stars: ✭ 86 (-94.15%)
Mutual labels:  reactive, rxjs, rx
rxact
Rxact is an observable application management for Javascript app
Stars: ✭ 21 (-98.57%)
Mutual labels:  rxjs, stream, observable
Toy Rx
A tiny implementation of RxJS that actually works, for learning
Stars: ✭ 290 (-80.29%)
Mutual labels:  reactive, rxjs, rx
Formily
Alibaba Group Unified Form Solution -- Support React/ReactNative/Vue2/Vue3
Stars: ✭ 6,554 (+345.55%)
Mutual labels:  reactive, rxjs, observable
Dugong
Minimal State Store Manager for React Apps using RxJS
Stars: ✭ 10 (-99.32%)
Mutual labels:  reactive, rxjs
Platform
Reactive libraries for Angular
Stars: ✭ 7,020 (+377.23%)
Mutual labels:  reactive, rxjs

RxViz logo

Project Status

Looking for maintainers!

Unfortunately, I don't have the time to maintain this project anymore. If you are interested to help, please reach out to me on Twitter @moroshko.

Description

RxViz simply visualizes a given Observable. Your JavaScript code will be evaluated, and, if the last expression is an Observable, a nice animated visualization will appear.

You can also:

  • Control the speed of the animation by modifying the Time window input.
  • Copy the resulting SVG to include in your next Rx presentation.
  • Share the visualization with your friends.

Examples

Basic interval

rxviz-basic-interval

Random error

rxviz-random-error

Higher order Observable

rxviz-higher-order-observable

Pause and resume

rxviz-pause-and-resume

How does it work?

RxViz treats the evaluated Observable as a black box. We rely only on the fact that Observable emits values over time. RxViz doesn't rely on the internals of RxJS. This will allow us to visualize TC39 Observables in the future.

Technically, we subscribe to the given Observable, and, once a value is observed, we simply add it to the visualization. It's that simple!

How about higher order Observables?

No different. Since a higher order Observable is simply an Observable whose values are Observables themselves, we just repeat the process recursively.

When an Observable value is seen, we subscribe to it. At this point, we create a new "branch" in the visualization.

Thanks

Running locally

npm install
npm run dev
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].