What are some good JS debugging tools? [closed]
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionAside from Chrome Developer Tools and Firebug in Firefox, are there other tools that I can use to debug my client-side JS ?
Firebug
JavaScript Debugger (Firefox Extension)
You can also do this in Visual Studio but I haven't tried it, so I can't vouch for it.
Similar question Is there a single HTML5, JavaScript, and CSS debugger?
PhpStorm/WebStorm/Intellij have a built-in debugger that you can run from within the IDE http://www.jetbrains.com/phpstorm/features/index.html
It depends what you mean by debug.
If you mean performance profiling/optimizing then nothing compares to dynaTrace ajax edition which is head and shoulders above firebug or chromes developer tools - alas it only works with ie.
If you mean debug errors in your code, then using visual studio to trace errors is again head and shoulders over firebug.
If you just need ease of use for everyday testing firebug is a great tool tho :)
Firebug + Chrome Developer Tools + Safari Developer Tools + IE8 Developer Tools is all you'll ever need.
精彩评论