Skip to content

Instantly share code, notes, and snippets.

@bashizip
Created October 21, 2014 01:27
Show Gist options
  • Save bashizip/a0dfb71850e2506cdf7a to your computer and use it in GitHub Desktop.
Save bashizip/a0dfb71850e2506cdf7a to your computer and use it in GitHub Desktop.
var http=require("http");
http.createServer(function(request,response){
response.writeHead(200,{"Content-Type":"text/plain"});
response.write("Hello World from a simple Node WebServer");
response.end();
}).listen(8888);
console.log("server started");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment