Useful stuff
Routing: we need to make routes that take people to games. To do this we can use URL slugs, eg:
/game/200
express allows us to create routes that work like this by using : in the route. eg
app.get("/game/:id", function(req,res){
res.send("This is game id " + req.params.id);