Create simple visualizations of your javascript code execution as flickering dots.
npm i -D html2js-loaderconst 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.