vote up 5 vote down star
4

Does anyone know of a good, extensible source code analyzer that examines JavaScript files?

flag

What are you looking for as far as analysis? – Jason Bunting Dec 1 '08 at 16:34
Pretty much, the typical errors and compatibility issue analysis but also the ability to examine naming conventions and style as well. – JamesEggers Dec 1 '08 at 16:36
Can you provide an example code analyzer for a different language? – Chris MacDonald Dec 1 '08 at 16:39
An example of what I would like to see is something like MS's StyleCop or FXCop but for JavaScript instead of C# or MSIL bytecode. – JamesEggers Dec 1 '08 at 16:46

3 Answers

vote up 7 vote down check

JSLint is the only good tool I know of.

link|flag
vote up 1 vote down

I have found JSLint which helps correct a lot of common errors and such; however, I'm hoping to find something that I can add my own rules and such to help automate some coding standards stuff that my company is wanting to implement into JavaScript.

http://www.jslint.com/

I need to look into it's extensibility model more.

link|flag
I'd love to see something more powerful too, but I haven't found anything yet... – chills42 Dec 1 '08 at 16:35
vote up 1 vote down

There's a few tools on the list of tools for static code analysis at wikipedia that has JavaScript support, you can allso see JavaScript Debugging if any of the tools mentioned would help. There's allso a few good tools at YUI (Yahoo! Developer Network), as well as a lot of helpful components.

I've allways used JSLint myself, and that's the only analysis tool for JS I've tried. I've grown more and more fond of JavaScript, but good tools is still a problem. :(

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.