• Stars
    star
    466
  • Rank 91,445 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 10 years ago
  • Updated almost 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

All the source code for the AngularJS Up & Running Book for O'Reilly

angularjs-up-and-running

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