1
0

Added server and Interface structure

This commit is contained in:
2016-03-07 21:14:16 +01:00
parent f4b1da0e1f
commit 76cc6c6d6a
6 changed files with 350 additions and 16 deletions

18
route.js Normal file
View File

@ -0,0 +1,18 @@
function route(handle, pathname,response,request,debug) {
console.log("About to route a request for " + pathname);
//typeof probes the data type of handle[pathname]. So if
//handle[pathname] is a function (in both type and value)
//,then run that function.
if (typeof handle[pathname] === 'function') {
return handle[pathname](response,request);
} else {
if(debug == true){
console.log("No request handler found for " + pathname);
}
response.writeHead(404, {"Content-Type": "text/plain"});
response.write("404 Not found");
response.end();
}
}
exports.route = route;