Run a Vue app locally, install nothing besides nanobox.
# clone the code
git clone https://github.com/nanobox-quickstarts/nanobox-vue.git
# cd into the vue app
cd nanobox-vue
# Add a convenient way to access your app from the browser
nanobox dns add local vue.dev
# Run vue as you would normally, with Nanobox
nanobox run npm run dev --host 0.0.0.0
Visit your app at vue.dev
With Nanobox, you don't have to have anything installed on your machine to run your app:
# drop into a Nanobox console
nanobox run
# where node is installed,
node -v
# your packages are available,
npm list
# and your code is mounted
ls
For more details about running vue apps with nanobox visit guides.nanobox.io/nodejs/vue/