vote up 4 vote down star
3

So far I've used Dreamweaver and Eclipse to develop my js and tried a bunch of others. And let me say I'm not impressed.

I'd like to think there are better tools out there. Tools that could for example give me a hint that something is wrong when I type document.geElementsById before I "build" and test my project. Maybe it could even have a autocomplete/suggestion system so I don't have to type everything myself (Eclipse has this but it doesn't work for functions you've defined, only for the built in features)

Let me know your favorites and why you think they're better than the rest.

flag

13 Answers

vote up 13 vote down

Use firebug for firefox, it'll be your best friend in no time.

As to the reason why it's good... well it's because it's the BEST tool out there in this day and age.

link|flag
Oh yes. I'm using firebug. It's an absolute necessity for testing but doesn't really help with the actual coding. – Gene Oct 15 '08 at 9:24
A debugger is a tool in development ;). – Dykam Aug 6 at 11:24
Firebug is must have tool, but when I switch to IE for test: OH MY GOD :) – jmav Oct 27 at 22:43
vote up 10 vote down

Aptana

link|flag
vote up 3 vote down

I agree that there are not many nice javascript development environment. Last tool that I used is Aptana which is Eclipse based, which is ok for what I was doing. But than again, I'm not a web developer which does a lot of javascript.

If you are using firefox, you can also use firebug or venkman javascript debugger.

link|flag
vote up 6 vote down

Javascript support has improved alot in Visual Studio 2008. You get intellisense for the basic functions. Its certianly not perfect but it will pick up things like getElementByID and some of the other basic functions.

The debugging and break points kind of works but it can be a bit of pain and has crashed a few times on me.

Microsoft added intellisense support for JQuery recently although its not perfect: http://weblogs.asp.net/bradvincent/archive/2008/04/28/better-jquery-intellisense-in-vs2008.aspx

Firebug is a must have for js development.

link|flag
vote up 4 vote down

Firebug is priceless, and JSLint can help you track down the obscure little bugs that can be very difficult to find.

link|flag
vote up 3 vote down

how could someone forget emacs :) js2-mode

link|flag
vote up 1 vote down

ActivestatesKomodo has decent javascript support, it even supports autocompletion for various javascript frameworks (YUI, Dojo, etc) they also have a free version called Komodo Edit, i haven't used that so i can't really comment on its javascript support.

link|flag
vote up 2 vote down

aptana Jaxer is the best tool I've found to date. It allows you to develop client/server side javascript. It incorporates intellisense for the major JS Libraries and makes javascript development a slightly more pleasent experience.

link|flag
vote up 2 vote down

Try NetBeans.

www.netbeans.org

It has all that you mantioned and all that you need

link|flag
vote up 1 vote down

SciTE is all you need.

link|flag
vote up 1 vote down

SpKet IDE was quite impressive, but I don't think it's techincally "free" to use.

link|flag
vote up 4 vote down

That's me:

var myConf = {
    ide : 'Aptana',
    browser : 'Firefox',
    plugins : [ 
        'Webdeveloper toolbar', 
        'Firebug',
        'Firepallete',
        'FireRainbow',
        'Yslow'
        ],
    support : [ 'IE7-8', 'Safari', 'Opera', 'Chrome']
 }
link|flag

Your Answer

Get an OpenID
or

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