Skip to content

Instantly share code, notes, and snippets.

@sveisvei
Forked from coreh/gist:594283
Created September 23, 2010 20:26
Show Gist options
  • Save sveisvei/594292 to your computer and use it in GitHub Desktop.
Save sveisvei/594292 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