An introductory version of Angello, the app built in the book AngularJS in Action.
You'll need git
and a web browser.
Run the following command to check out a local copy of the code.
git clone https://github.com/angularjs-in-action/angello-lite.git
Because we are pulling files from a CDN, we are going to need to run Angello Lite from a web server. There are a few ways to do this, but one of the easiest ways is to use the npm package serve
.
The steps are as follows:
- Install Node.js. You can find all of the information to do that here.
- Install the
serve
package by runningnpm install -g serve
from the command line. - Navigate to the
angello-lite
directory from the command line and runserve
. - Go to http://localhost:3000 in your browser to see the application.