Skip to content

Instantly share code, notes, and snippets.

@banacorn
Created September 27, 2015 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save banacorn/9fd272f9d9aa528683f6 to your computer and use it in GitHub Desktop.
Save banacorn/9fd272f9d9aa528683f6 to your computer and use it in GitHub Desktop.
var http = require('http');
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World\n");
response.end();
});
server.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment