I want to create a R-shiny app with multiple url paths (url dispatcher)
e.g.
http://127.0.0.1:3838/app_name/login
http://127.0.0.1:3838/app_name/home
http://127.0.0.1:3838/app_name/dashboard
http://127.0.0.1:3838/app_name/
Is it possible here?
I want to create a R-shiny app with multiple url paths (url dispatcher)
e.g.
http://127.0.0.1:3838/app_name/login
http://127.0.0.1:3838/app_name/home
http://127.0.0.1:3838/app_name/dashboard
http://127.0.0.1:3838/app_name/
Is it possible here?
brochure
I'd be curious if anyone has worked with brochure
?
Colin released this pages to build multpage Shiny apps,
He gave a talk to the NHS R community in Feb, NHS-R Webinar: Building Multiple Page Shiny Apps with {brochure} - February 2022 - YouTube
shiny.router
Another approach is working with shiny.router
. I think the gist of shiny.router
is to preserve state in the url, so as people click around the app update the visualization, these actions update the URL.
Please check my answer here:
or here:
for native shiny solutions.