function start(response) { console.log("Request handler 'start' was called."); response.writeHead(200, {"Content-Type": "text/plain"}); response.write("Hello Start"); response.end(); }