Skip to content

Instantly share code, notes, and snippets.

@zacck-zz
Created July 19, 2016 10:07
Show Gist options
  • Save zacck-zz/c5b31be86c22609bbfda01d70f36f255 to your computer and use it in GitHub Desktop.
Save zacck-zz/c5b31be86c22609bbfda01d70f36f255 to your computer and use it in GitHub Desktop.
var http = require('http');
http.createServer(function(re, res) {
res.writeHead(200, {'Content-Type':'text/plain'});
res.end('Hello World\n');
}).listen(8080)
console.log('Server running on port 8080');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment