Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is your preference when it comes to editing/debugging large JavaScript projects, containing number of relatively big JS files?

Please list your choice, why do you like it compared to others; If it is already listed you can up vote it if you like.

Summary:

  • Jetbrains WebStorm/PhpStorm (most comprehensive); $100 for commercial license, $50 personal, $25 academic, free for open source developers upon application approval
  • Komodo IDE (full Node.js debugging support since version 8); $382
  • Nodeclipse, an Eclipse plugin for Node.js
  • Cloud9 - cloud-based IDE
  • vim
  • Sublime Text
share|improve this question
4  
Polls are usually made community-wiki. – Marko Oct 13 '10 at 1:17
24  
I don't quite understand why this question is closed but similar question on Python IDE is not is.gd/g0a7P – Art Oct 13 '10 at 12:45
6  
This should really be a community-wiki, not closed. There's a poll like this for almost every language. – Hugo May 15 '11 at 14:44
4  
Funny how it us still closed yet it is of heaps of interest to other people than myself - it's got 42 upvotes so far, if that's not a measure of relevance, I don't know what is. – Art Feb 28 '12 at 4:50
2  
Too all those who wondered why this question was closed: simply put, because the SO moderators are opinionated punctilious sticklers who care more about following rules than about letting the community contribute knowledge. But you've got away easily - this four-year old question with 81 stars just got deleted one day by casperOne. – Dan Dascalescu Apr 23 at 9:36
show 2 more comments

closed as not constructive by Robert, duffymo, Marko, Samuel Neff, Roger Pate Oct 13 '10 at 5:48

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 13 down vote accepted

Vim is my choice. IDEs cannot help you debug Javascript applications. Text editors are sufficient and fast.

But Vim's default configuration does not support Javascript well. Add-ons are prefered. You need a better indentation, Taglist for view and navigate through the outline, and custom syntax definitions for ctags (backend for Taglist) to support javascript better. To make a ctags support Javascript well, you need to tweak it yourself. There is no best solution available now. And, a little hack should be done to Taglist plugin/Vim's script for Javascript, I don't remember which of that, sorry.

share|improve this answer
4  
NOTE There is now an easy and neat way to get JavaScript tag-listing and syntax checking for Vim using Mozilla's DoctorJS (formerly jsctags), community-driven jshint.com which is way better than JSLint, Syntastic, and TagBar Vim plugins (Note this is not the infamous unmaintained TagList). See my answers for this question and this question more info. – Ory Band May 5 '11 at 7:24
2  
Eclipse has a plugin to connect the debugger to v8. Plus all the other standard IDE features, this makes it perfect for Node.JS. – OrangeDog Oct 6 '11 at 17:03
12  
IDEs cannot help you debug Javascript applications. <- This is clearly false. In fact, it's probably easier to debug javascript than, for example, PHP - for several reasons. – Christian Aug 24 '12 at 11:01
3  
An alternative to Vim, is Sublime Text. Much more user friendly, and I would also argue that it is more powerful than Vim. Google it ;) – kornfridge Aug 27 '12 at 9:09
4  
OMG, I always hear VIM, VIM, VIM for everything.... – Exception Oct 8 '12 at 12:21
show 2 more comments

There's a new cloud-based IDE specifically for developing JavaScript applications, called Cloud9. (it's still in dev, though)

share|improve this answer
I love cloud9! it is not finished yet, but it looks very promising! – Elmer Aug 16 '11 at 1:51
2  
I wish there was Vim plugin for cloud9! – Art Sep 6 '11 at 1:45
2  
@Art, they incorporated vim style editing recently, check the blog – Hortinstein Jan 10 '12 at 8:41
@Hortinstein thanks! – Art Jan 10 '12 at 12:00
2  
Url is obsolote. New one is at c9.io – iboware Apr 18 '12 at 15:55

I use Komodo Edit currently, since it's good for a handful of things such as pointing out some coding errors, and with the quick open extension it's really easy to get around projects. It also supports Ctrl+click to jump to definitions in JavaScript to some extent. Version 8 (April 2013) supports Node.js debugging.

However, it's not without its quirks and limitations. It's far from perfect, but it does a decent job for what I do most of the time.

But yeah, I'll also +1 Cloud9 IDE; I'm very interested to see where that gets eventually.

share|improve this answer
1  
Version 7 (currently in alpha stage) appears to have some very solid Node.js support: activestate.com/blog/2011/06/nodejs-support-komodo-7-alpha-3 – nickf Sep 13 '11 at 6:17

MacVim, with a heavily customized .vimrc. To me, there's no IDE out there that compares to how efficient one can be in Vim, if you properly use it. This is a tad subjective, as really, IDE's and editors come down to preference. You have to find your favorite. Find an IDE/editor that you like the best, and stick with it.

share|improve this answer

I code in MacVim or jEdit and do debugging in Firebug.

share|improve this answer
19  
Debugging in Firebug wouldn't really be applicable here, because Node.js is server-side. – Austin Hyde Oct 13 '10 at 1:15

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