Skip to content

Instantly share code, notes, and snippets.

@learngcpwithmahesh
Last active November 2, 2021 21:00
Show Gist options
  • Save learngcpwithmahesh/bf23b484006f8f65ab58a57f1f24ccf6 to your computer and use it in GitHub Desktop.
Save learngcpwithmahesh/bf23b484006f8f65ab58a57f1f24ccf6 to your computer and use it in GitHub Desktop.
var http = require('http');
var handleRequest = function(request, response) {
response.writeHead(200);
response.end("<h1> Deployed Version is v1.0.</h1><h2>~By Evonence DevOps Team</h2>");
}
var www = http.createServer(handleRequest);
www.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment