All the source code for the AngularJS Up & Running Book for O'Reilly
Steps To Server Files Locally
Using NodeJS
git clone https://github.com/shyamseshadri/angularjs-up-and-running
cd angularjs-up-and-running
npm init
(accept all defaults)
npm install --save http-server
node node_modules/http-server/bin/http-server
connect browser to http://localhost:8080 example directory is served
Using Python
git clone https://github.com/shyamseshadri/angularjs-up-and-running
cd angularjs-up-and-running
python -m SimpleHTTPServer
connect browser to http://localhost:8000 example directory is served