После успешной установки вы можем ввести в командной строке/терминале команду node -v, и нам отобразится текущая версия node.js:
miltorg@miltorg-linux:~$ node -v
v8.10.0
miltorg@miltorg-linux:~$
------------------------
Этот код запускает сервер:
const http = require("http");
http.createServer(function(request,response){
response.end("Hello NodeJS!");
}).listen(3000, "127.0.0.1",function(){
console.log("Сервер начал прослушивание запросов на порту 3000");
});
------------------------
Проверить: http://localhost:3000
-------------------
const http = require("http");
http.createServer(function(request, response){
response.setHeader("Content-Type", "text/html");
response.write("<!DOCTYPE html>");