Answers for "node code"

0

node code

var http = require('http');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});

    
  res.end('Hello World!');
}).listen(8080);
Posted by: Guest on April-30-2021

Browse Popular Code Answers by Language