Smitha
Smitha

Reputation: 6134

Debugging / analyzer tool for Javascript?

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

Answers (2)

Lucas Green
Lucas Green

Reputation: 3959

Static analysis:

Debuggers:

The IEs 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

Konstantin Dinev
Konstantin Dinev

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

Related Questions