app.get("/:name?/:group?", function(req, res){...
is matching files that are in my public directory. So if I include a stylesheet:
<link type="text/css" href="/stylesheets/style.css" />
Node will match /stylesheets/style.css and assign name the value stylesheets and group the value style.css.
What's the best way to avoid this?