Skip to content

Instantly share code, notes, and snippets.

@AngeloR
Last active December 23, 2015 08:09
Show Gist options
  • Save AngeloR/6605487 to your computer and use it in GitHub Desktop.
Save AngeloR/6605487 to your computer and use it in GitHub Desktop.
Simple Node.js HTT server
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '293.122.113.1');
console.log('Server running at http://293.122.113.1:1337/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment