Skip to content

Instantly share code, notes, and snippets.

@ardian
Created December 13, 2015 18:24
Show Gist options
  • Save ardian/e99a9b2251cbfb884289 to your computer and use it in GitHub Desktop.
Save ardian/e99a9b2251cbfb884289 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(8080, '127.0.0.1');
console.log('Server running at http://127.0.0.1:8080')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment