JavaScript Profiler in IE

JavascriptPerformanceInternet ExplorerProfiling

Javascript Problem Overview


Does anyone know a tool for Profiling JavaScript in IE?

List available:

Javascript Solutions


Solution 1 - Javascript

Checkout http://ejohn.org/blog/deep-tracing-of-internet-explorer/ the dynaTrace tool shown here is fantastic and works with IE7.

Solution 2 - Javascript

The Internet Explorer 8 beta (2) has a builtin Javascript profiler (in the developer toolbar). It's worth playing with at least...

Solution 3 - Javascript

JavaScript Profiler is a decent tool.

Solution 4 - Javascript

YUI also provides a profiler.

Solution 5 - Javascript

js-profiler also provide a profiler that is working in any browser and does not depend on any framework.

Solution 6 - Javascript

I don't think debugbar has a profiler.. but it does have a debugger and a console... so you can fake it...

Solution 7 - Javascript

We use Firebugs console.log, console.time and console.timeEnd (I think) a lot.

Firebug also has a built in profiler.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDaniel SilveiraView Question on Stackoverflow
Solution 1 - Javascriptuser327872View Answer on Stackoverflow
Solution 2 - JavascriptAndrewView Answer on Stackoverflow
Solution 3 - JavascriptGreg HurlmanView Answer on Stackoverflow
Solution 4 - JavascriptWalter RumsbyView Answer on Stackoverflow
Solution 5 - Javascriptuser257474View Answer on Stackoverflow
Solution 6 - JavascriptdanbView Answer on Stackoverflow
Solution 7 - JavascriptScottKoonView Answer on Stackoverflow