Skip to content

Instantly share code, notes, and snippets.

@nurfarazi
Created November 9, 2015 06:29
Show Gist options
  • Save nurfarazi/93012226ed45d7c45665 to your computer and use it in GitHub Desktop.
Save nurfarazi/93012226ed45d7c45665 to your computer and use it in GitHub Desktop.
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('hello world\n');
}).listen(8000, '127.0.0.1');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment