Skip to content

Instantly share code, notes, and snippets.

@davidbella
Created January 10, 2014 02:25
Show Gist options
  • Save davidbella/8345968 to your computer and use it in GitHub Desktop.
Save davidbella/8345968 to your computer and use it in GitHub Desktop.
Node: Simple web server with built in HTTP
var http = require('http');
var server = http.createServer(function(request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.write('Hello World');
response.end();
})
server.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment