heatfiler
heatfiler copied to clipboard
A JS profiler and code coverage tool that displays the result in a (live updating) heatmap
Had this issue with the Typescript game, Warship (https://github.com/Microsoft/TypeScriptSamples/tree/master/warship). Without Heatfiler profiling, it gives only 2 dark-blue squares, the left one for human and right one for computer. With Heatfiler,...
Use case would be a big switch where you want to see stats from. Right now you have to hover over each case for the title. But with such template...
``` js if (x); else if (y) { haha } else ; ``` the transformation will cause `unexpected token else` ``` js { $statement$(0, 0); if ($expression$(0, 3, (x)))$statement$(0, 5);...
If you were watching some functions and want to refresh to update the code, the view should jump back to that functions and not stick to the top.
Allow requirejs (and other module based) projects to be profiled. I'm sure I can hack requirejs to do what I want...
That way you can integrate heatfiler in a build process. This means you would not have to do the translation at runtime (still have to include heatfiler of course, but...
How should I tackle cross iframe profiling? Like cobro.... Since everything uses localstorage it shouldn't be a huge problem. The only catch seems to be that it needs to include...