1.0.1 • Published 5 years ago

tallbag-for-each-poc-dynamic-graph v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Dynamic graph renderer for tallbags

Proof of concept

Use this sink as a replacement for forEach, and it will automatically dump a graph visualization on the DOM that updates as the tallbag chain delivers data. Hacky implementation.

Example use

const forEach = require('tallbag-for-each-poc-dynamic-graph');

pipe(
  combine(interval(1000), interval(1500)),
  map(([x, y]) => `a${x} b${y}`),
  take(5),
  forEach(console.log)
);