Firefox add-on tools for checking JavaScript syntax? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:15:10Zhttp://stackoverflow.com/feeds/question/252677http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/252677/firefox-add-on-tools-for-checking-javascript-syntax0Firefox add-on tools for checking JavaScript syntax?David.Chu.ca2008-10-31T05:31:30Z2008-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#2526955Answer by Codeslayer for Firefox add-on tools for checking JavaScript syntax?Codeslayer2008-10-31T05:45:33Z2008-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#2526981Answer by CMS for Firefox add-on tools for checking JavaScript syntax?CMS2008-10-31T05:51:29Z2008-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#2527081Answer by sarego for Firefox add-on tools for checking JavaScript syntax?sarego2008-10-31T06:00:05Z2008-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#2527232Answer by le dorfier for Firefox add-on tools for checking JavaScript syntax?le dorfier2008-10-31T06:08:37Z2008-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#2527621Answer by Atomiton for Firefox add-on tools for checking JavaScript syntax?Atomiton2008-10-31T07:00:50Z2008-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#2528161Answer by Joe Scylla for Firefox add-on tools for checking JavaScript syntax?Joe Scylla2008-10-31T07:39:38Z2008-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#2529101Answer by Gene for Firefox add-on tools for checking JavaScript syntax?Gene2008-10-31T08:57:19Z2008-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>