https://github.com/hackyourfuture/angularjs
Class material from angularJS module
https://github.com/hackyourfuture/angularjs
Last synced: 5 months ago
JSON representation
Class material from angularJS module
- Host: GitHub
- URL: https://github.com/hackyourfuture/angularjs
- Owner: HackYourFuture
- Created: 2016-08-05T13:44:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-02T10:10:02.000Z (over 9 years ago)
- Last Synced: 2025-03-04T19:31:09.490Z (over 1 year ago)
- Language: HTML
- Homepage:
- Size: 3.32 MB
- Stars: 2
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AngularJS
## Slides
## Day 1: Controllers
Hello World
``` HTML
{{ ctrl.message }}
```
``` javascript
angular.module('firstApp', [])
.controller('firstController', [firstController])
function firstController() {
var vm = this
vm.message = 'Hello World'
}
```
Documentation / Tutorials
* W3Schools Intro
* ng api
* controller guide
## Day 2: Services & Directives
Run a temporal server with brackets or installing python(2.x.x) and typunc in the command promp ```python -m SimpleHTTPServer```
* https://docs.angularjs.org/guide/services
* https://docs.angularjs.org/guide/directive
## Day 3: Filters & Routes
``` HTML
// Replace X.Y.Z with the value of the angular version that you are using
```
``` javascript
// app.js
angular.module("myApp", ["ngRoute"])
```