Firefox add-on tools for checking JavaScript syntax? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:15:10Z http://stackoverflow.com/feeds/question/252677 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax 0 Firefox add-on tools for checking JavaScript syntax? David.Chu.ca 2008-10-31T05:31:30Z 2008-10-31T08:57:19Z <p>Not sure if there is any Firefox add-on tool for checking JavaScript syntax, var declaration, or even pre-compiling available? </p> <p>I find out is very difficult to debug JavaScript in a web html page. I have to add some script there. When the scripts get very big or long, it stops working. Basically, there must be some bugs. It is very frustrating even the load event stop working. I do need some good tools to find out the bugs.</p> <p>I have tried FireBug. It is good but not enough. Maybe I don't know all its features. Anyway, I need any good suggestions. </p> http://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax/252695#252695 5 Answer by Codeslayer for Firefox add-on tools for checking JavaScript syntax? Codeslayer 2008-10-31T05:45:33Z 2008-10-31T05:45:33Z <p>This page may help you a bit as it also contains a screencast.</p> <p><a href="http://asymptomatic.net/2007/08/22/2643/debugging-javascript-in-firefox-with-firebug-and-breakpoints" rel="nofollow">Debugging Javascript in Firefox with Firebug</a></p> http://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax/252698#252698 1 Answer by CMS for Firefox add-on tools for checking JavaScript syntax? CMS 2008-10-31T05:51:29Z 2008-10-31T05:51:29Z <p>As an alternative to <a href="http://getfirebug.org" rel="nofollow">FireBug</a> check this debugger: <a href="http://addons.mozilla.org/en-US/firefox/addon/216" rel="nofollow">Venkman JavaScript Debugger</a>, has been out there for a while, and it's not bad at all...</p> http://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax/252708#252708 1 Answer by sarego for Firefox add-on tools for checking JavaScript syntax? sarego 2008-10-31T06:00:05Z 2008-10-31T06:00:05Z <p>I have always been a firebug fan and it sure is one of the best debuggers out there. Any JS issue Press F12, Enable the console for catching the errors and then you can find the exact line causing the error. Add a breakpoint and you can see the exact values of variables too. Very intuitive UI..just get used to using it and it will save a lot of your time.</p> http://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax/252723#252723 2 Answer by le dorfier for Firefox add-on tools for checking JavaScript syntax? le dorfier 2008-10-31T06:08:37Z 2008-10-31T06:14:14Z <p>It's not strictly an Add-On (although you can obviously run it in a Firefox web page), but I've found <a href="http://www.jslint.com/" rel="nofollow">JSLint</a> to be helpful in exposing expression anomalies that might or might not be strictly invalid syntax (although it will catch all those, too.)</p> http://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax/252762#252762 1 Answer by Atomiton for Firefox add-on tools for checking JavaScript syntax? Atomiton 2008-10-31T07:00:50Z 2008-10-31T07:00:50Z <p>I HIGHLY recommend <a href="http://xrefresh.com/rainbow" rel="nofollow">Rainbow</a>. It's still in Beta and only works in FF3, but it offers syntax highlighting. That will get you half-way there when it comes to syntax. </p> http://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax/252816#252816 1 Answer by Joe Scylla for Firefox add-on tools for checking JavaScript syntax? Joe Scylla 2008-10-31T07:39:38Z 2008-10-31T07:39:38Z <p>My suggestion is to check you javascript with <a href="http://www.jslint.com/" rel="nofollow">JSLint</a>. JSLint will show you common problems in javascript code and helps you to create strict and compatible code.</p> <p><a href="http://developer.yahoo.com/yslow/" rel="nofollow">YSlow</a> includes JSLint as Tool.</p> http://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax/252910#252910 1 Answer by Gene for Firefox add-on tools for checking JavaScript syntax? Gene 2008-10-31T08:57:19Z 2008-10-31T08:57:19Z <p>I constantly use firebug with a js file that has some 15000 lines. I've had no problems with it (sometimes I have to wait a few seconds for it to scroll to the breakpoint but even then it works fine).</p> <p>Unfortunately JSLint does'nt work for us. We use some third party code that while beeing "valid" has unnecessary ";" according to jsLint. The code is in the beginning of our js file and jslint stops analyzing at 3% because it thinks there are too many errors (all of them unnecessary ";".)</p>