Run an React app locally, install nothing besides nanobox.
# clone the code
git clone https://github.com/nanobox-quickstarts/nanobox-react.git
# cd into the react app
cd nanobox-react
# Add a convenient way to access your app from the browser
nanobox dns add local react.dev
# Add environment variable to set the dev host to 0.0.0.0
nanobox evar add local HOST=0.0.0.0
# Run react as you would normally, with 'nanobox run'
nanobox run yarn start
Visit your app at react.dev:3000
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
# yarn is installed,
yarn --version
# and your code is mounted
ls
For more details about running react apps with nanobox visit guides.nanobox.io/javascript/react/