Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there some tool that can syntax-check my JavaScript files to see if they contain syntax errors that would bother the Javascript engine of Internet Explorer, especially excess trailing commas?

Example:

var some_object = {
  valid : "property",
  one : "comma too much ---> ",
};

This code works fine in FireFox, Chrome and Node.JS but fails in IE because of the trailing slash. The integrated debugger of IE is rarely a help since it doesn't produce useful errors/warnings for large web applications as we have (lots of JavaScript files combined together summing up to 50-100 k lines of code).

JSLint doesn't help as it reports a huge amount of other warnings or stops at some meaningless error.

One idea could be using eval() directly within IE and catch SyntaxError exceptions but I can't do this in an automated way (ie. on a command line).

Unfortunately Node.JS doesn't bother about trailing commas.

No Linux / Windows tool around that can do basic JavaScript syntax checking for a file?

share|improve this question
What trailing slash? I don't see one in your example. You mean "trailing comma"? – Ira Baxter Jun 29 '11 at 17:02
sorry, that was a typo – Udo G Jun 30 '11 at 11:56

2 Answers

up vote 1 down vote accepted

You can try also http://www.javascriptlint.com/. After instaled you may edit jsl.default.conf to set the warnings reported.

share|improve this answer
perfect! thanks :) – Udo G Jun 30 '11 at 12:15

Our JavaScript Formatter will prettyprint your JavaScript code. It uses a full JavaScript parser to do so. It reports syntax errors as it parses. Windows.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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