NodeJS plugin in IntelliJ Community Edition does not work

28,081

Solution 1

NodeJS plug-in requires IntelliJ IDEA Ultimate as it depends on JavaScript plug-in available only in the commercial edition.

It also works in WebStorm, PhpStorm, RubyMine and PyCharm products.

Solution 2

Node.js is listed in the frameworks that are supported only in Ultimate version.

This list is provided in Intellij's features (comparing Ultimate vs Community editions):

https://www.jetbrains.com/idea/features/editions_comparison_matrix.html

Share:
28,081
Andreas Selenwall
Author by

Andreas Selenwall

Updated on June 16, 2020

Comments

  • Andreas Selenwall
    Andreas Selenwall almost 4 years

    I have tried to use the NodeJS plugin in IntelliJ IDEA CE but can't get it to work. After the plugin have been installed and the IDE restarts, it says that it can't find Javascript plugin which is said to be required by NodeJS (though it doesn't say so in the documentation).

    Does NodeJS plugin only work in the licensed edition of IntelliJ IDEA?

  • Daniil Shevelev
    Daniil Shevelev over 9 years
    This is a bit frustrating. Nowhere on this page does it say that you need Ultimate edition: jetbrains.com/idea/features/nodejs.html Does PyCharm community support it, do you know?
  • CrazyCoder
    CrazyCoder over 9 years
    Sorry, PyCharm Community Edition doesn't support it.
  • Nilambar Sharma
    Nilambar Sharma almost 9 years
    Link only answers are not quite recommended. Please provide some explanation.
  • Vadiraj Purohit
    Vadiraj Purohit over 3 years
    Here is a simple workaround for running javascript apps in intellij community edition. Create a runapp.bat or runapp.sh. Add below command in the script npm run build && npm run start. Add run configuration and choose shell script. Point the .bat or .sh file depending on your OS. That's it