I'm used to having my compiler complain when I do something stupid like a typo on a variable name but JavaScript has a habit of letting this pass.

Are there any static analysis tools for JavaScript?

Preferably a free one (either beer or speech) because I'm a tightarse.

link|improve this question

79% accept rate
feedback

6 Answers

up vote 10 down vote accepted

I agree that JSLint is the best place to start. Note that JavaScript Lint is distinct from JSLint. I’d also suggest checking out JSure, which in my limited testing did better than either of them, though with some rough edges in the implementation—the Intel Mac version crashed on startup for me, though the PowerPC version ran fine even on Intel, and the Linux version ran fine as well. (The developer, Berke Durak, said he'd get back to me when this was fixed, but I haven't heard from him.)

Don’t expect as much from JavaScript static analysis as you get from a good C checker. As Durak told me, “any non-trivial analysis is very difficult due to Javascript's dynamic nature.”

(Another, even more obscure Mac-only bug, this time with JSLint’s Konfabulator widget: Dragging a BBEdit document icon onto the widget moves the document to the trash. The developer, Douglas Crockford, hadn’t tried the widget on a Mac.)

10 August 2009: Today at the Static Analysis Symposium, Simon Holm Jensen presented a paper on TAJS: Type Analyzer for JavaScript, written with Anders Møller and Peter Thiemann. The paper doesn’t mention the above tools, but Jensen told me he’d looked at some of them and wasn’t impressed. The code for TAJS should be available sometime this summer.

link|improve this answer
the jsure link is broken. found it here: aurochs.fr/jsure.html – Sven Hecht Jul 12 '10 at 10:00
Pity JSLint is Online only. – UpTheCreek Mar 13 at 8:04
@UpTheCreek: JSLint is available on GitHub. – Dave Swersky Mar 27 at 16:37
@Dave oh right, that's great:) – UpTheCreek Mar 27 at 16:41
feedback

Google's "Closure" JS compiler produces configurable warnings and errors at compile-time. It definitely finds misspelled variables and methods, plus arity mistakes. If you're willing to write JsDoc the Closure way, it can do a lot with type information, too.

The YUI "Compressor" tool can produce warnings too, but haven't tried it yet.

I haven't had much luck with the Aptana IDE, built on Eclipse, but other people like it. See Stack Overflow discussion of JS IDEs.

The IntelliJ IDE, which isn't free last I checked, has frickin' excellent JS support. It will detect and highlight misspelled vars and methods as you type, and more. It's got autocomplete, too.

link|improve this answer
feedback

I like Jslint for this sort of thing...

link|improve this answer
Cool. I found an Eclipse plugin for JSLint at rockstarapps.com/joomla-1.5.8/products/… which looks quite good too. Note that one needs to install from the 'Eclipse Update site for the Beta Version of jsLex 1.2.2' to get the JSLint functionality. – Mat Feb 10 '09 at 23:39
feedback

JSAnalyse has just been published on codeplex. It is a tool which analyses the dependencies between javascript files. You can even define the allowed dependencies and JSAnalysis checks whether the defined rules are fulfilled or not. That allows to keep track about the javascript dependencies even in big projects and have a clean architecture.

JSAnalyse can be executed as a command line tool or configured via the Visual Studio Layer Diagramm. It is also easy to integrate into the build. With gated check-ins you can keep the dependencies under control.

http://jsanalyse.codeplex.com/

link|improve this answer
feedback

Our SD ECMAScript CloneDR is a tool for finding exact and near-miss copies of duplicated code across large JavaScript source code bases.

It uses the language syntax to guide the detection, so it will find clones in spite of format changes, inserted/deleted comments, renamed variables and even some inserted/deleted statements.

The site has a sample CloneDR run on Google's Closure library.

link|improve this answer
has anyone tried this one yet? Didn't find any download or order buttons... – Sven Hecht Jul 12 '10 at 10:03
@Sven: ask at the website. – Ira Baxter Aug 6 '10 at 8:20
... Since January 2011... there's a download link that you can use to get an eval copy of CloneDR for JavaScript (or a number of other languages) to play with. – Ira Baxter Jul 1 '11 at 5:21
feedback

Full disclosure, I'm behind this: http://www.toptensoftware.com/minime which does minification, obfuscation and a reasonable set of lint style checks.

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.