https://github.com/hwclass/bootcamp-angular-firebase-demo
A demo to present the technologies, Angular.js and Firebase combining into a sample voting application.
https://github.com/hwclass/bootcamp-angular-firebase-demo
Last synced: 11 months ago
JSON representation
A demo to present the technologies, Angular.js and Firebase combining into a sample voting application.
- Host: GitHub
- URL: https://github.com/hwclass/bootcamp-angular-firebase-demo
- Owner: hwclass
- License: mit
- Created: 2014-11-22T23:35:18.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-28T13:36:11.000Z (over 11 years ago)
- Last Synced: 2025-06-02T07:16:56.511Z (about 1 year ago)
- Language: JavaScript
- Size: 2.23 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
bootcamp-angular-firebase-demo
==============================
A demo to present the technologies, Angular.js and Firebase combining into a sample voting application.
### Prerequisites
Node Package Manager (npm) - use npm to install project dependencies including bower and http-server. You can get npm [here](http://nodejs.org/)
### Install Dependencies
After cloning the repository, you firstly need install Node Package Manager:
```
sudo apt-get install npm
```
Then the next step is installing the packages:
```
npm install -g
```
We have two kinds of dependencies in this project: tools and angular framework code.
* We get the tools we depend upon via `npm`, the [node package manager](http://nodejs.org/).
* We get the angular code via `bower`, a [client-side code package manager](http://bower.io/).
```
npm install bower -g
cd app
bower install
```
Bower will install all client dependencies into the following folder in your project.
* `app/libs` - contains the angular framework files