“http module nodejs” Ответ

http module nodejs

var http = require('http');

//create a server object:
http.createServer(function (req, res) {
  res.write('Hello World!'); //write a response to the client
  res.end(); //end the response
}).listen(8080); //the server object listens on port 8080
Coder Devil

http module nodejs

JS
const http = require('http');
Bah Keith

Ответы похожие на “http module nodejs”

Вопросы похожие на “http module nodejs”

Больше похожих ответов на “http module nodejs” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования