Skip to content

nanobox-quickstarts/nanobox-angular

Repository files navigation

Angular from scratch

Angular from scratch

Run a Angular app locally, install nothing besides nanobox.

Clone the repo

# clone the code
git clone https://github.com/nanobox-quickstarts/nanobox-angular.git

# cd into the angular app
cd nanobox-angular

Run the app

# 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

Check it out

Visit your app at angular.dev:3000

Explore

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

Now What?

For more details about running angular apps with nanobox visit guides.nanobox.io/javascript/angular/