1

I've been doing command line development of node.js on my Mac OSX El Capitan machine for a bit but wanted to try an IDE. I loaded Eclipse Mars and added the Enide Studio 2015 from the marketplace.

Created both a example project and an express generator project but I can't seem to get them to run in either the debugger mode or run mode.

When I run debugger mode, it seem to run and shows in the console that it is running but when I go to http://localhost:5858/ I get a browser that only shows:

Type: connect

V8-Version: 4.6.85.28

Protocol-Version: 1

Embedding-Host: node v5.0.0

Content-Length: 0

Any ideas?

HeneryH
  • 95
  • 1
  • 8

1 Answers1

0

In package.json what script is execute for start ?

Then right-click that script.js and Run as -> Node application or Debug as -> Node application

npm does not have parameters to launch in debug mode

Paul Verest
  • 60,022
  • 51
  • 208
  • 332