https://github.com/search?q=stars:%3E1&s=stars&type=Repositories
uses
Model
View
Model
Controller
manipulates
updates
sees
continous updates
Template
View
Model
SMS Class
function (SMSClass)
SMSClass.send ("text")
Send()
SMS Class (Mock)
Send()
New SMSClass
SmSClass.Send ("text")
Directives
Modules
Controllers
Services
Filters
angular.module('drag', []);
angular.module ('drag').directive('draggable', function($http, myService) {
<code goes here>
});
ng-app, ng-repeat
$http $log, $q
date, orderBy
ngResource, ngAnimate, ngAria
<html ng-app="phonecatApp">
<head>
...
<script src="bower_components/angular/angular.js"></script>
<script src="js/controllers.js"></script>
</head>
<body ng-controller="PhoneListCtrl">
<ul>
<li ng-repeat="phone in phones">
<span>{{phone.name}}</span>
<p>{{phone.snippet}}</p>
</li>
</ul>
</body>
</html>
Markers on a DOM element that tell AngularJS's HTML compiler to attach a specified behavior
JavaScript constructor function that is used to augment the Angular Scope
var myApp = angular.module('myApp',[]);
myApp.controller('DoubleController', ['$scope', function($scope) {
$scope.double = function(value) { return value * 2; };
}]);
<div ng-controller="DoubleController">
Two times <input ng-model="num"> equals {{ double(num) }}
</div>
javascript
html
https://codepen.io/Tallyb/pen/EjXvXL
lazy instantiated, single objects to organize and share code across your app
var phonecatServices = angular.module('phonecatServices', ['ngResource']);
phonecatServices.factory('Phone', ['$resource',
function($resource){
return $resource('phones/:phoneId.json', {}, {
query: {method:'GET', params:{phoneId:'phones'}, isArray:true}
});
}]);
Formats the value of an expression for display to the user
angular.module('phonecatFilters', []).filter('checkmark', function() {
return function(input) {
return input ? '\u2713' : '\u2718';
};
});
Access data from the server
$http - built in access
$resource [ngResource]
Restangular
https://github.com/mgonto/restangular
ngRoute
ui-router
https://github.com/angular-ui/ui-router
source: Dan Wahlin
https://github.com/angular-ui/bootstrap
https://material.angularjs.org/latest/#/
DreamFActory, Loopback, BackAnd
Firebase
ionic, famo.us
gulp, grunt, webpack
yeoman
npm, bower
Karma, jasmine
ng-book, angular (Brad Green & Shayed Sashedri
Angular, Dan Wahlin, Ben Nadel
code academy, pluralsight, udamy
https://github.com/johnpapa/angular-styleguide
0.10
Sep '11
1.0
Jun '12
1.1
Sep '12
1.2
Nov '13
1.3
Oct '14
1.4
May '15
1.5
???