Skip to content

Instantly share code, notes, and snippets.

@ansballard
Created September 5, 2016 00:17
Show Gist options
  • Save ansballard/f1656646a8b812e062bd26f9416489f8 to your computer and use it in GitHub Desktop.
Save ansballard/f1656646a8b812e062bd26f9416489f8 to your computer and use it in GitHub Desktop.
app.get("/", (req, res) => {
res.sendFile("index.html");
});
app.get("/u/:username", (req, res) => {
res.redirect("/#/u/" + req.params.username);
});
app.get("/userlist", (req, res) => {
res.redirect("/#userlist");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment