Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

nodejs

var http = require("http");

http.createServer(function(request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.write("Hello World");
  response.end();
}).listen(8888);
Source by nodejs.developpez.com #
 
PREVIOUS NEXT
Tagged: #nodejs
ADD COMMENT
Topic
Name
5+2 =