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

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

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

* https://docs.angularjs.org/api/ng/filter/filter

* https://docs.angularjs.org/api/ngRoute/