Any open source Javascript editor / javascript eclipse plugin with code support

I just had to read jQuery Intellisense Updates from Microsoft and wondered if there was any editor or eclipse plugin that provides intellisense complete or code help. Whether there is a?

+1
source share
4 answers

I believe that eclipse, with the Aptana plugin, has several jQuery support .

As mentioned here , intellisense is supported:

5. Start coding.

  • As you enter, note that Code Assist is now active for the jQuery objects and functions that you use.
  • At any time, press ctrl + space to activate Code Assist.
+6
source

Why not Visual Studio / Web Developer 2008 (or am I missing something)? express edition is free.

+2
source

You can use the standalone version of Aptana Studio , it is free and much easier than the full Eclipse.

+1
source

Aptana provides Javascript help code, but not intellisense. True intellisense for Javascript is currently provided with only three identifiers:

  • NetBeans (open source)
  • IntelliJ Idea (development of a corporate website)
  • MS Visual Studio (has its own free version)

So the answer is NetBeans.

But, unfortunately, none of them are doing this job well.

+1
source

Source: https://habr.com/ru/post/1347668/


All Articles