“HTTP -Modulknotenjs” Code-Antworten

HTTP -Modulknotenjs

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 -Modulknotenjs

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

Ähnliche Antworten wie “HTTP -Modulknotenjs”

Fragen ähnlich wie “HTTP -Modulknotenjs”

Weitere verwandte Antworten zu “HTTP -Modulknotenjs” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen