AnkitKumarSahoo
AnkitKumarSahoo

Reputation: 47

How can I find JavaScript project option in Eclipse 2020-06?

I have downloaded Eclipse IDE for Web and JavaScript Developers package of 2020-06 version. But while creating project I am not seeing "JavaScript Project" option upon doing "File >> New". Can anyone please help me out?

Upvotes: 0

Views: 2106

Answers (3)

AnkitKumarSahoo
AnkitKumarSahoo

Reputation: 47

The following steps worked:

To get back the JSDT JavaScript editor you have to uninstall Eclipse Wild Web Developer and install JavaScript Development Tools from the Eclipse IDE 2020-03 release.

Uninstall Eclipse Wild Web Developer: In Help > About Eclipse IDE: Installation Details, in the Installed Software tab select Eclipse Wild Web Developer and click Uninstall

Install JavaScript Development Tools from the 2020-03 release: In Help > Install New Software... work with https://download.eclipse.org/releases/2020-03 and choose JavaScript Development Tools to install

Upvotes: 0

Thomas Humphries
Thomas Humphries

Reputation: 47

If you are unable to create a Static Web Project, I recommend:

  • double check your installed software - do you have all the sub-packages for Web Development?
  • take a look at the CodeMix project (also installable through the Eclipse market place) - its a commercial product but may have what you need in there.

Upvotes: 0

nitind
nitind

Reputation: 20003

As of that release, you no longer need a distinct JavaScript Project and its associated Include Path and other options, as JavaScript support is primarily coming from the Wild Web Developer project. WWD provides features to the Generic Editor, and doesn't place any requirements on the file to be in a particular folder in a special kind of project. Ideally, you just create a JavaScript file and start coding without needing to tell Eclipse anything about your project that you're not already setting up otherwise.

Upvotes: 1

Related Questions