Is there a straightforward way to run and debug a basic JavaScript code in IntelliJ Idea Ultimate without the need for additional setup like creating an HTML file or npm project?
I'm looking to avoid boilerplate tasks and wondering if there's an easy solution that I might have missed.
I tried searching for a feature similar to Java launch configurations and experimented with running a simple node project using npm init --yes
and npm run
in the same folder, but unfortunately, it didn't work as expected.