hitviz
v1.0.3
Published
Create simple visualizations of your javascript code execution as flickering dots.
Downloads
2
Readme
hitviz
Create simple visualizations of your javascript code execution as flickering dots.
Install
npm i -D html2js-loader
Usage
const hitviz = require('hitviz');
const hit = hitviz();
const result = hit('hit1');
for(let i = 0; i < 20; i++) {
hit('hit2');
}
result.svg() // returns a string containing a svg animation of your execution.
result.json() // returns the internal javascript object.