650320
var http =require("http");
var server=http.createServer();
function onRequestCallBack(request,response) { console.log("Request Received."); response.writeHead(200,{"Content-type": "text/plain"}); response.write("Hello JasonW"); response.end(); }
server(onRequestCallBack).listen(8888);
console.log("Server has started.");