vote up 0 vote down star
1

Not sure if there is any Firefox add-on tool for checking JavaScript syntax, var declaration, or even pre-compiling available?

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.

I have tried FireBug. It is good but not enough. Maybe I don't know all its features. Anyway, I need any good suggestions.

flag

57% accept rate

7 Answers

vote up 6 vote down

This page may help you a bit as it also contains a screencast.

Debugging Javascript in Firefox with Firebug

link|flag
vote up 2 vote down

It's not strictly an Add-On (although you can obviously run it in a Firefox web page), but I've found JSLint to be helpful in exposing expression anomalies that might or might not be strictly invalid syntax (although it will catch all those, too.)

link|flag
vote up 1 vote down

As an alternative to FireBug check this debugger: Venkman JavaScript Debugger, has been out there for a while, and it's not bad at all...

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

I HIGHLY recommend Rainbow. 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.

link|flag
vote up 1 vote down

My suggestion is to check you javascript with JSLint. JSLint will show you common problems in javascript code and helps you to create strict and compatible code.

YSlow includes JSLint as Tool.

link|flag
vote up 1 vote down

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).

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 ";".)

link|flag
Why don't you separate your script into different files at least in development mode? That way it would be easier to debug the code and even allow you to use JSLint. – Damir Oct 31 '08 at 17:31
Yeah if I really wanted to I could do it. It's too much of a hassle though. We have automated "publishing" system in place and it would be a lot of manual work to separate publish and test all our files all the time (you may call me lazy if you want). The debugging works fine so thats no issue. – Gene Nov 3 '08 at 8:40

Your Answer

Get an OpenID
or

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