Learning Node.js

Learning Node.js from the Beginner’s tutorial…
var http = require("http");
var url = require("url");

function start() {
function onRequest(request, response) {
var pathname = url.parse(request.url).pathname;
console.log("Request for " + pathname + " received.");

response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World-9");
response.end();
}

http.createServer(onRequest).listen(8888);
console.log("Server has started.");
}

exports.start = start;

About dannyrosales

Becoming a software craftsman.
This entry was posted in Uncategorized. Bookmark the permalink.

Leave a comment