https://github.com/alvarowolfx/shopping-list-app
Example application using AngularJS
https://github.com/alvarowolfx/shopping-list-app
Last synced: 2 months ago
JSON representation
Example application using AngularJS
- Host: GitHub
- URL: https://github.com/alvarowolfx/shopping-list-app
- Owner: alvarowolfx
- Created: 2015-07-07T00:10:13.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-07T17:00:44.000Z (almost 10 years ago)
- Last Synced: 2025-01-10T15:57:36.855Z (4 months ago)
- Language: HTML
- Size: 113 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shopping List App
This app was developed on the AngularJS Course that I gave. So I'm sharing the code for those who are interested in studying AngularJS.Links for the slides:
* [Part one](https://www.slideshare.net/secret/HnFPzJnYQndCZJ)
* [Part two](https://www.slideshare.net/secret/avS82Tu0nXVbXA)## Pre requirements
- Node.js and NPM installed (I recommend to do something like [this](https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md) to install global packages without sudo )
- Browser Sync
```shell
npm install -g browser-sync
```## How to run
- Install required npm packages, run this command on project folder :
```shell
npm install
```
- Start livereload server
```shell
browser-sync start --server --files="**/*.html, **/*.js"
```