README
http_route
A nodejs module for routing of pretty urls.
Use
http_route.addRoute("GET", "/my/url/:param1", callback_function);
The callback function
should have the following signature:
function callback_function(req, res, route)
route
contains the parameters For more information look at the Documentation
In your createServer callback, call http_route.route(req,res,pageNotFoundHandler)
The pageNotFoundHandler
function should have the following signature:
function pageNotFoundHandler(req, res)