Circular progress indicator using canvas.
$ npm install progress-component
varProgress=require('progress');varprogress=newProgress;document.body.appendChild(progress.el);varn=0;varid=setInterval(function(){if(n==100)clearInterval(id);progress.update(n++);},50);Update the indicator to n and re-draw.
Change the font to family.
Change the font size to n.
Change the indicator diameter to n, defaults to 50.
MIT
