Run a Angular app locally, install nothing besides nanobox.
# clone the code
git clone https://github.com/nanobox-quickstarts/nanobox-angular.git
# cd into the angular app
cd nanobox-angular
# Add a convenient way to access your app from the browser
nanobox dns add local angular.dev
# Run angular as you would normally, with Nanobox
nanobox run npm start
Visit your app at angular.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
# your packages are available,
npm list
# and your code is mounted
ls
For more details about running angular apps with nanobox visit guides.nanobox.io/javascript/angular/