Skip to content

Instantly share code, notes, and snippets.

@cookie-ag
Last active October 5, 2016 05:30
Show Gist options
  • Save cookie-ag/14639a8d8b484eee4c8b72439812b2c9 to your computer and use it in GitHub Desktop.
Save cookie-ag/14639a8d8b484eee4c8b72439812b2c9 to your computer and use it in GitHub Desktop.
Simple Hello world to use when setting up production server
#!/usr/bin/env nodejs
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8080, 'localhost');
console.log('Server running at http://localhost:8080/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment