Я пытаюсь запустить узел js в Visual Studio 2015, но если я использовал узел версии 6, проект запускается, но я пытаюсь установить версию 8, а затем выдает следующую ошибку:
error: -
(node:6600) [DEP0062] DeprecationWarning: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` or `node --inspect-brk` instead.
server.js: -
var http = require('http');
var port = process.env.port || 1337;
http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
}).listen(port);