Skip to content

Instantly share code, notes, and snippets.

@mgechev
Created January 26, 2013 13:55
Show Gist options
  • Save mgechev/4642516 to your computer and use it in GitHub Desktop.
Save mgechev/4642516 to your computer and use it in GitHub Desktop.
var server = require('net').createServer();
server.on('connection', function (s) {
s.write("HTTP/1.1 200 OK\n");
s.write("Content-type: text/html\n\n");
s.write("<h1>Honey, I <span style=\"color: red;\"><3</span> U!</h1>\n");
s.end();
});
server.listen(1337);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment