“NodeJS modułu HTTP” Kod odpowiedzi

NodeJS modułu HTTP

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

NodeJS modułu HTTP

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

Odpowiedzi podobne do “NodeJS modułu HTTP”

Pytania podobne do “NodeJS modułu HTTP”

Więcej pokrewnych odpowiedzi na “NodeJS modułu HTTP” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu