javascript related debugging tools or libraries? [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this questionWhen you debug javascript related issues, any tools or libraries you can use to debug more easily to find the root cause? Any tool on Windows/Linux/Mac and for IE/Firefo开发者_高级运维x are ok. I am just collecting a list of good tools so that I can use them to trouble shoot when I meet with any issues. :-)
thanks in advance, George
Personally I like and use FireBug.
What is a good Javascript debugging tool? here on SO
- Firebug (For Firefox and general JS debugging)
- Developer Tools in IE8+ (comes built-in)
- Web Inspector in WebKit like Chrome/Safari (comes built-in).
Other than that, you should be using Fiddler to keep track of performance/requests etc.
And finally JSFiddle.net for stand-alone testing.
I use firebug most of the time with the following firebug plugins.
Firebug
FireRainbow, FireRainbow enables javascript syntax highlighting for Firebug. This is really cool. Saves a lot of time.
FirePHP,FirePHP enables you to log to your Firebug Console using a simple PHP method call.
Widerbug, can leverage wide screens for js debugging/development. Obsolete now as it is supported in Firebug 1.9 right out of the box.
精彩评论