Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are some good JS debugging tools? [closed]

Aside from Chrome Developer Tools and Firebug in Firefox, are there other tools that I can use to debug my client-side JS ?

like image 223
marcamillion Avatar asked Mar 07 '11 22:03

marcamillion


2 Answers

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.

like image 198
Robert Greiner Avatar answered Oct 22 '22 02:10

Robert Greiner


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

like image 24
Juan Mendes Avatar answered Oct 22 '22 03:10

Juan Mendes