Let's start working with Angular!
This repo is designed to be a starting point for an angular workshop used to teach the basics of Angular in a practical manner.
To begin working with this repo, you will need grunt and stylus installed.
npm install -g grunt-clinpm install -g stylus
Once you have cloned the repo and have those 2 dependencies installed, simply run the following from the project root directory.
npm install
Then you can run grunt dev to start the development environment.
- Wire up newItem to itemList
- Change list to use an array of objects
- Use object properties to drive style
- Allow user to mark item as done
- Load initial data list from JSON file
- Save state to localStorage after initial load
- Show more text when hovering over item (using controller/directive)