Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/munirwanis/angularjs-up-and-running


https://github.com/munirwanis/angularjs-up-and-running

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

angularjs-up-and-running
========================

All the source code for the [AngularJS Up & Running Book for O'Reilly](http://shop.oreilly.com/product/0636920033486.do)

*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