up vote 10 down vote favorite
6
share [g+] share [fb]

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

link|improve this question

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
feedback

6 Answers

up vote 16 down vote accepted

JSLint is the only good tool I know of.

link|improve this answer
feedback

In the interest of keeping this question up-to-date, there is a fork of JSLint called JSHint. An explanation of why JSHint was created can be found here, but to summarize:

JSHint is a fork of JSLint, the tool written and maintained by Douglas Crockford. JSLint served me well for quite some time but in the past few months it has gotten uncomfortably opinionated and hostile towards your code. It is quickly transforming from a tool that helps developers to prevent bugs to a tool that makes sure you write your code like Douglas Crockford.

link|improve this answer
Ha, a down vote :-) Was that you Douglas? – CodeNaked Aug 23 '11 at 15:14
feedback

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|improve this answer
feedback

If you haven't found it yet, you should take a look at Google Closure Compiler. Compiles your JavaScript and finds errors in code. http://code.google.com/closure/compiler/docs/gettingstarted_api.html

link|improve this answer
feedback

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|improve this answer
I'd love to see something more powerful too, but I haven't found anything yet... – chills42 Dec 1 '08 at 16:35
feedback

I use Aptana for JavaScript file analysis. It catches alot of goofs (if condition with a single =). It also describes the class layout. I believe it has a jslint implementation embedded in it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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