erum::Conf 2020 workshop session. Contribute to DivadNojnarg/Advanced-User-Interfaces-for-Shiny-Developers development by creating an account on GitHub.
You can put Shiny Server Pro in a Docker container, but licensing must be handled explicitly. For this configuration, we recommend using a floating license server on hardware or a static VM, on the...
React.js is a thriving JavaScript library that eases encapsulating and sharing sophisticated component libraries. The React.js ecosystem is filled with components for doing everything from...
I used shinyapps.io for my own shiny app. It’s a great service. You can deploy your app for free, test it and show it to other people. But there’s also a downside: The memory an app can use is limited. So I was looking for another way to deploy my app. So I took a look at Docker.
Auto-refresh persistently displayed Shiny app when new version is deployed to RStudioConnect
Aaaand... because I couldn't help myself. A simple little example using shinyjs that seems to work for my not-very-thorough testing 😄 The two important bits: In the UI: shinyjs::useShinyjs(), In the Server (10 seconds for testing): shinyjs::runjs( "function reload_page() { window.location.reload(); setTimeout(reload_page, 10000); } setTimeout(reload_page, 10000); ") You definitely don't need the shinyjs package to make this work, but it does make things a little easier :s...