Shiny and Vue.js

I'm currently creating a Vue.js app which will connect to my shiny app. The experience doesn't have to be seamless, but I wonder if someone knows of similar examples. As both run on port 8080, I can't seem to figure out a way of running both at the same time.

What's running the Vue app on port 8080 - is it a development server? If so, you'll want to run that on a different port, and proxy everything but the Vue app to Shiny. Otherwise you can serve the Vue app from Shiny directly. I made an example of this setup a while ago at Build shiny app using node?. It was for a React app, but Vue should be similar.

2 Likes

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.