Skip to content

Instantly share code, notes, and snippets.

@gabrysiak
Last active August 29, 2015 14:19
Show Gist options
  • Save gabrysiak/33708633a6b7b461e86b to your computer and use it in GitHub Desktop.
Save gabrysiak/33708633a6b7b461e86b to your computer and use it in GitHub Desktop.
Basic Server & Hello World
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337);
console.log('Server listening on port 1337');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment