Skip to content

Instantly share code, notes, and snippets.

@bscott
Forked from anonymous/server.js
Created December 16, 2012 08:27
Show Gist options
  • Save bscott/4304239 to your computer and use it in GitHub Desktop.
Save bscott/4304239 to your computer and use it in GitHub Desktop.
var http = require("http");
var port = process.env.PORT
function start() {
function onRequest(request, response) {
console.log("Request received.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}
http.createServer(onRequest).listen(port);
}
exports.start = start;
console.log("Server has started.");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment