I have create a simple Node.JS project in Visual Studio 2015. I have add one simple line with code:
console.log('Run!')
When I run my app (F5), I will see a console window with text: "Debugger listening on 5858 port" "Run"
As I understand the first line mean that some Node debugger was run, but I do not need it, I use Visual Studio. How can I delete this first messages?
Best regards.