a little late answer: you can host a brilliant application on Windows .
use the following run.R script below, run it as a job on a windows machine. Verify that the port (below 1234) is open in the local firewall.
Enjoy it!
require(shiny) folder_address = 'H:/path to app' x <- system("ipconfig", intern=TRUE) z <- x[grep("IPv4", x)] ip <- gsub(".*? ([[:digit:]])", "\\1", z) print(paste0("the Shiny Web application runs on: http://", ip, ":1234/")) runApp(folder_address, launch.browser=FALSE, port = 1234, host = ip)
user1693885
source share