JavaScript IDEs - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:49:16Zhttp://stackoverflow.com/feeds/question/41880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/41880/javascript-ides28JavaScript IDEsMichael Stum2008-09-03T15:06:02Z2009-11-28T19:10:30Z
<p>Yay, another "What is the Best IDE"-Question, but this time it's for a language that does not seem to have any really popular yet: JavaScript.</p>
<p>With an IDE, I mean the full set: Writing Code with Syntax Highlighting and possibly "IntelliSense" Code Completion Helper, but also debugging including Breakpoint and Watches (also for AJAX Stuff), possibly even with support to run the code in multiple Browsers.</p>
<p>My current approach of "Writing JS in Notepad and using Firefox' Error Console and Firebug" is not really statisfying...</p>
http://stackoverflow.com/questions/41880/javascript-ides/41882#418820Answer by Thomas Owens for JavaScript IDEsThomas Owens2008-09-03T15:07:11Z2008-09-03T15:07:11Z<p>I'm not entirely sure if it has all the features you mentioned, but Aptana Studio is good for web development (including JavaScript).</p>
http://stackoverflow.com/questions/41880/javascript-ides/41885#418851Answer by bdukes for JavaScript IDEsbdukes2008-09-03T15:08:16Z2008-09-03T15:08:16Z<p><a href="http://www.aptana.com/studio" rel="nofollow">Aptana</a>'s the best I've come across. It's free, open-source, includes highlighting, code completion, debugging, and a number of other tools.</p>
http://stackoverflow.com/questions/41880/javascript-ides/41888#418880Answer by David Basarab for JavaScript IDEsDavid Basarab2008-09-03T15:09:44Z2008-09-03T15:09:44Z<p><a href="http://www.flos-freeware.ch/notepad2.html" rel="nofollow">Notepad2</a> supports JavaScript syntax highlighting. </p>
<p>Intellisense is offered in VS2008, however since JavaScript is so open you will never be able to have the same intellisense as a strongly typed language.</p>
http://stackoverflow.com/questions/41880/javascript-ides/41889#4188919Answer by David McLaughlin for JavaScript IDEsDavid McLaughlin2008-09-03T15:09:45Z2008-09-03T15:09:45Z<p>There is no IDE that is quite as feature-complete as you require, but <a href="http://www.aptana.com/studio" rel="nofollow">Aptana Studio</a> is one that constantly comes up on sites like <a href="http://www.ajaxian.com" rel="nofollow">Ajaxian</a> as being one of the better JavaScript IDEs. </p>
<p>I believe they also have code completion support for jQuery 1.2.6 as well. </p>
http://stackoverflow.com/questions/41880/javascript-ides/41891#418910Answer by Rob Cooper for JavaScript IDEsRob Cooper2008-09-03T15:09:48Z2008-09-03T15:09:48Z<p>Good question (+1) my thought is, is it really possible to have a good one? I mean, it would need to be really tightly integrated with the web-application.. Which means it would need a lot of investment (i.e. need to be an IDE from one of the "big dogs"!)</p>
<p>We get intellisense in 2008? :)</p>
http://stackoverflow.com/questions/41880/javascript-ides/41900#419000Answer by Joel Coehoorn for JavaScript IDEsJoel Coehoorn2008-09-03T15:13:12Z2008-09-03T15:13:12Z<p>Visual Studio 2008 is supposed to do a lot better with javascript than in the past, but I haven't been able to try it yet myself.</p>
http://stackoverflow.com/questions/41880/javascript-ides/41923#419238Answer by 17 of 26 for JavaScript IDEs17 of 262008-09-03T15:21:55Z2008-09-03T15:21:55Z<p>Visual Studio 2008 is excellent for developing Javascript. Intellisense works occassionally, but it's difficult because Javascript is a dynamically typed language.</p>
<p>The downside is that you can only debug with IE, but you get full fledged debugger functionality - breakpoints, watch windows, ability to modify variable values on the fly, etc.</p>
<p>For debugging in Firefox, I use a combination of Firebug and the <a href="http://www.mozilla.org/projects/venkman/" rel="nofollow">Venkman debugger</a>.</p>
<p>If you're just looking for a lightweight text editor, <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a> had syntax highlighting for most languages, including HTML and Javascript. </p>
http://stackoverflow.com/questions/41880/javascript-ides/42042#420420Answer by Martin Salias for JavaScript IDEsMartin Salias2008-09-03T16:16:53Z2008-09-03T16:16:53Z<p>1+ for VS 2008</p>
<p>You may try VS 2008 Express edition which is free.</p>
<p>As others mentioned, Intellisense is hard in dynamic languages, but VS does a few nice tricks, and it also leverages library annotations to provide Intellisense on 3rd party libraries like jQuery or Dojo.</p>
<p>Highly recommended!</p>
http://stackoverflow.com/questions/41880/javascript-ides/42051#420511Answer by IceHeat for JavaScript IDEsIceHeat2008-09-03T16:20:16Z2008-09-03T16:20:16Z<p>JavaScript Development Tools for Eclipse</p>
<p><a href="http://wiki.eclipse.org/index.php/ATF/JSDT" rel="nofollow">http://wiki.eclipse.org/index.php/ATF/JSDT</a></p>
http://stackoverflow.com/questions/41880/javascript-ides/42791#427912Answer by Evil Andy for JavaScript IDEsEvil Andy2008-09-03T23:06:05Z2008-09-03T23:06:05Z<p>I would also add Netbeans 6.1. Although it's primarily for Java it does have quite decent JavaScript syntax highlighting, code complete, etc. along with debugging in Firefox with Firebug.</p>
<p>Have a check of the features <a href="http://www.netbeans.org/kb/61/ide/javascript-editor.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/41880/javascript-ides/49626#496260Answer by username for JavaScript IDEsusername2008-09-08T12:55:00Z2008-09-08T12:55:00Z<p>If you're using Windows... <strong>Textpad</strong> isn't really an IDE for Javascript, though it does syntax highlighting, but I would highly recommend it, in combination with a debugger web-browser plug-in. Once you get used to using Textpad, all other GUI-based text editors will frustrate you.</p>
http://stackoverflow.com/questions/41880/javascript-ides/116778#1167780Answer by Vasil for JavaScript IDEsVasil2008-09-22T18:58:57Z2008-09-22T18:58:57Z<p>Aptana has the best support for JS from the IDEs I've seen so far + it comes with every major JavaScript prepackaged.</p>
http://stackoverflow.com/questions/41880/javascript-ides/186616#18661610Answer by Bas Leijdekkers for JavaScript IDEsBas Leijdekkers2008-10-09T10:05:53Z2008-10-09T10:05:53Z<p>IntelliJ IDEA has fantastic <a href="http://www.jetbrains.com/idea/features/javascript_editor.html" rel="nofollow">JavaScript support</a> in my opinion. Steve Yegge calls it "the gold standard for JavaScript editing today". And a JavaScript debugger is coming in version 8.0.</p>
http://stackoverflow.com/questions/41880/javascript-ides/187127#1871271Answer by Danita for JavaScript IDEsDanita2008-10-09T12:54:53Z2008-10-09T12:54:53Z<p>Am I the only one who uses Eclipse + JSEclipse? I just finished a 40+ module front-end project and it worked like a charm :) I'm using Firefox 2 + Firebug, Firecookie, Web Developer Toolbar for debugging. I tried Aptana but it seemed a bit slow for me. I'll try JSDT and see what happens.</p>
http://stackoverflow.com/questions/41880/javascript-ides/192777#1927771Answer by Chris Pietschmann for JavaScript IDEsChris Pietschmann2008-10-10T19:38:30Z2008-10-10T19:38:30Z<p>Visual Studio 2008 has Intellisense support for JavaScript, and there is a method of adding your own files to define your own intellisense (code completion) support for any JavaScript APIs you need. It all works quite well.</p>
<p>Here's some info on getting jQuery Intellisense support working in VS'08:
<a href="http://blogs.ipona.com/james/archive/2008/02/15/JQuery-IntelliSense-in-Visual-Studio-2008.aspx" rel="nofollow">http://blogs.ipona.com/james/archive/2008/02/15/JQuery-IntelliSense-in-Visual-Studio-2008.aspx</a></p>
http://stackoverflow.com/questions/41880/javascript-ides/291598#2915980Answer by Christopher for JavaScript IDEsChristopher2008-11-14T22:06:26Z2008-11-14T22:06:26Z<p>Has anyone tried 1st JavaScript Editor Pro? It look promising as a JS IDE.
<a href="http://yaldex.com/JSFactory_Pro.htm" rel="nofollow">http://yaldex.com/JSFactory_Pro.htm</a> </p>
http://stackoverflow.com/questions/41880/javascript-ides/682066#6820661Answer by Aaron for JavaScript IDEsAaron2009-03-25T15:16:34Z2009-03-25T15:16:34Z<p>I've used <a href="http://erik.eae.net/archives/2005/07/04/21.49.50/" rel="nofollow">Microsoft Script Editor</a> for a year and it's been a very satisfactory experience. The trick is finding it, buried as it is within MS Office. Instead of simply launching it when an runtime error occures in IE, I use it as a standalone javascript IDE. It has partial intellisense, but unfortunately isn't smart enough to provide intellisense for js classes that you create yourself. Debugging is great and has watch and quickwatch windows. Primarily I've used it for writing financial calculators, so the debugging has been a godsend when tracking down bugs. (Of course, if there's a FF-specific bug, I switch to Firebug).</p>
<p>I'm still always looking for a better javascript IDE, so I'm going to investigate the ones mentioned previously in this post.</p>
http://stackoverflow.com/questions/41880/javascript-ides/1813456#18134561Answer by JBsurveyer for JavaScript IDEsJBsurveyer2009-11-28T19:10:30Z2009-11-28T19:10:30Z<p>Take a look at Wavemaker.com; very ambitious Ajax based IDE so its supports both ends. Then take a gander at what 128north people have under wraps ... and finally, if you can do some timetravelling - see what Borland had avaiable with its IntraBuilder IDE - JavasCript on both sides of the wire, client and server. Very, very nice but too far ahead of its time</p>