Reputation: 6134
Please suggest if we can use any static analysis tools for Javascript? Can parasoft tool be used? Any tutorial on parasoft would be helpful.
Are there any other debugger alternative to Opera dragonfly?
Thanks
Sneha
Upvotes: 0
Views: 1007
Reputation: 3959
Static analysis:
Debuggers:
F12
in Chrome )The IE
s have a few debuggers, some come with MS Office
, some with Visual Studio
, its sort of a mess, and I don't have great resources for that.
Static analyzers for JavaScript
are fairly limited because of the linkage patterns and dynamically defined objects.
Upvotes: 1
Reputation: 34915
If you need to debug javascript for front-end web development, then the debugger that I find most useful is the IE9 debugger. I am aware that there is a lot of bias against internet explorer, but the debugger is really good and when an exception is thrown you would actually get a window for it.
Upvotes: 0