How can I run 3 different shiny apps, each embedded on its own html side on the same port?
For example in shiny server I would be able to access the specific apps in HTML iframe through 
http://<server-address>:3838/appName. 
I wondered if it would be a good idea to run one server script which calls and starts the according app by shiny::runApp() (on an other port, 2 are still ok but not more), depending which html side is open? but then again how can I input this into the Rscript ( something like 
*parseQueryString(session$clientData$url_search)* and ../?app=appName 
which gets called by iframe? )
I also looked into shiny modules but then again, how can it call the specific app which should be shown on the website
 
    