Skip to content

Instantly share code, notes, and snippets.

@coreh
Created September 23, 2010 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save coreh/594283 to your computer and use it in GitHub Desktop.
Save coreh/594283 to your computer and use it in GitHub Desktop.
var sys = require('sys');
var path = require('path');
var http = require('http');
http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World!\n');
console.log('servi');
}).listen(1337, "localhost");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment