Skip to content

Instantly share code, notes, and snippets.

Created December 16, 2012 08:26
Show Gist options
  • Save anonymous/4304237 to your computer and use it in GitHub Desktop.
Save anonymous/4304237 to your computer and use it in GitHub Desktop.
HTTP Server Module
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