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

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

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"
```