I would like to \"get rid\" of the router in node.js. Currently, what I have is something that looks like this:
app.get \'/thing1\', (req, res) -> re
app.get('/:thing', function (req, res) { res.render(req.params.thing) })