Adding routes

In web applications, a route is the relative path after the hostname.

In https://www.example.com/a/b/c, the route is /a/b/c.

In https://www.example.com/a/b, the route is /a/b.

R can display different content or widgets depending on the URL path when using the shiny-router package, installable via cran.

packages.install("shiny-router")
packrat::snapshot()

Last updated