On Fri, Jan 28, 2011 at 4:44 PM, Acaz Souza Pereira <[email protected]> wrote: > I think a good editor will include things like: > ... > ...
Actually I know only two IDEs for javascript comparable to VS2010 for C#: - Intellij IDEA or Webstorm or other IDEs by Jetbrains (my favourites) http://www.jetbrains.com/webstorm/ http://www.jetbrains.com/idea/ http://www.jetbrains.com/ - Eclipse with Aptana or Spket plugin http://www.eclipse.org/ http://www.aptana.com/ http://spket.com/ Both have all things you've listed: - snippets for common routines like for(){...}, try{...}catch(){...}, while(){} etc - Intellisense-like autocomplete of functions/variables/objects - accept jsDoc comments and show parameter help - if you add to project js-file with jsDoc for APIs you will have autocomplete and documentation for those APIs - aptana can run jsLint on every save, Webstorm have Jetbrains inspections for code checks - both have configurable code-style options and code cleanup functions (not only tabs but also braces/spaces/parenthesis and mauch more) Also both have debugging tools (breakpoints, expression evaluation etc) and VCS integration. Jetbrains also have great refactoring tools like "renaming with usage checking", "extracting method" etc. -- Maxim Vasiliev -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/[email protected]/ To search via a non-Google archive, visit here: http://www.mail-archive.com/[email protected]/ To unsubscribe from this group, send email to [email protected]
