- Notifications
You must be signed in to change notification settings - Fork32
A minimalistic router for your Shiny apps.
License
Appsilon/shiny.router
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A minimalistic router for your Shiny apps.
Now it's possible to recreate a state of your app, by providing a specific URL, like:
router_ui( route("<your_app_url>/main",mainPageShinyUI), route("<your_app_url>/other",otherPageShinyUI))
It's possible to install this library through CRAN
install.packages("shiny.router")The most recent version you can get from this repo usingremotes.
remotes::install_github("Appsilon/shiny.router")
Basic usage:
library(shiny)library(shiny.router)root_page<- div(h2("Root page"))other_page<- div(h3("Other page"))ui<- fluidPage(title="Router demo", router_ui( route("/",root_page), route("other",other_page) ))server<-function(input,output,session) { router_server()}shinyApp(ui,server)
Checkthe tutorial for more details on how to start usingshiny.router.
An application that showcases theshiny.router features can be foundhere:
It was built using two other Appsilon Open Source packages:
rhino- an R package designed to help building high quality, enterprise-grade Shiny applications at speed.shiny.fluent- Microsoft's Fluent UI for Shiny apps.
You can also visitexamples directory for some complete samples.
If you want to contribute to this project please submit a regular PR, once you're done with new feature or bug fix.
Reporting a bug is also helpful - please useGitHub issues and describe your problem as detailed as possible.
Appsilon is aPosit (formerly RStudio) Full Service Certified Partner.
Learn more atappsilon.com.
Get in touchopensource@appsilon.com
Explore theRhinoverse - a family of R packages built aroundRhino!
About
A minimalistic router for your Shiny apps.
Topics
Resources
License
Code of conduct
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.


