Skip to content

Instantly share code, notes, and snippets.

@chenzhihao
Created July 12, 2013 07:38
Show Gist options
  • Save chenzhihao/5982614 to your computer and use it in GitHub Desktop.
Save chenzhihao/5982614 to your computer and use it in GitHub Desktop.
test
function onRequest(request, response) {
var pathName = url.parse(request.url).pathname;
handler[pathName];
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment