Skip to content Skip to sidebar Skip to footer

Project Type For Executing Javascript In Intellij Idea

Is there any IntelliJ IDEA project type that allows me to execute JavaScript, showing the results in the console? I've been trying HTML5_Boilerplate, but it requires to generate th

Solution 1:

IDEA itself can't execute Javascript, it can only be executed by browsers/Node.js interpreter. Project type doesn't matter. If you like to be able to run .js files with Node.js via Run command in right-click menu, you need to make sure that NodeJS plugin is installed and enabled. You can install it via Settings | Plugins, Install JetBrains plugin...


Post a Comment for "Project Type For Executing Javascript In Intellij Idea"