Does anyone know of a browser plugin (Chrome, Safari or Firefox) that would give me a detailed look into Javascript function execution time and resources? I'm aware of Firefox/Firebug's console.profile() but I'm looking for something that can analyze all functions from within the browser vs having to manually enter this code into my scripts. If there is no browser plugin for this, maybe a standalone one similar to dynaTrace but for Mac.
-
I'm confused, what do you want in addition to what every browser debugger already does? FF/WK/IE9+ all have javascript profilers built in.Andrew– Andrew2012-01-05 16:55:21 +00:00Commented Jan 5, 2012 at 16:55
-
to the best of my knowledge in FF (and probably other browsers that i havent tested) i need to add a console.profile('Profile start') and console.profileEnd() in order to get what I'm looking for. The problem here is say i have 5k+ lines of javascript over multiple files and I dont know where the bottleneck is. I dont want to have to implement the console.profile() on every function. I would like to be able to see a list of all the functions being executed, their execution time, and possibly even the amount of memory being used.Dan Ramos– Dan Ramos2012-01-05 16:58:11 +00:00Commented Jan 5, 2012 at 16:58
-
In chrome for example, F12, profiles tab, black cirlce starts profiling.Andrew– Andrew2012-01-05 17:00:46 +00:00Commented Jan 5, 2012 at 17:00
Add a comment
|