Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/munirwanis/angularjs-up-and-running
https://github.com/munirwanis/angularjs-up-and-running
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/munirwanis/angularjs-up-and-running
- Owner: munirwanis
- License: mit
- Created: 2016-04-07T14:19:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-06T04:34:30.000Z (about 9 years ago)
- Last Synced: 2023-03-01T20:23:10.469Z (almost 2 years ago)
- Language: JavaScript
- Size: 959 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 servedUsing 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