-
Notifications
You must be signed in to change notification settings - Fork 1
Angular
- Angular docs : Official documentation
- Ng modules : Found contributed angular directives
-
Mean Seed app using angular.js, node.js, twitter bootstrap ....
https://github.com/linnovate/mean -
angular cheetsheet http://www.cheatography.com/proloser/cheat-sheets/angularjs/
-
Yeoman generator https://github.com/yeoman/generator-angular#controller
-
http://www.sitepoint.com/kickstart-your-angularjs-development-with-yeoman-grunt-and-bower/
-
Angular development blog and 2.0 version updates
http://blog.angularjs.org/2014/03/angular-20.html -
From jquery to angular
http://stackoverflow.com/questions/14994391/how-do-i-think-in-angularjs-if-i-have-a-jquery-background?rq=1
- Angular dependency injection
- Angular Modules architecture / ng-app / Modules ...
- angular events // How to react to events in angular
- angular scope // Object $scope that hold all variables to bind between model and controller
- angular scope inheritance //
- angular controllers / Define the application logic (Controller part of MCV)
- angular services / Relation with web services and databases (Model part of MVC)
- angular directives / Reusable element that empack controller, template...
- angular filters / Modify a string befor display (date filters...)
- angular templates // Templates for directives....
- angular resources // using resource to dialog with a rest API
- angular sanitize // sanitize the datas with html
- angular location // How to deal with deep linking
- Angular tools
- Angular best pratices
- Angular documentation // How to documentate our code with ng doc
- Angular share code // Share code between controllers...
- Angular debug
- Angular SEO // Make the angular ajax loaded page crawlable
- Angular code analysis
- Angular Recipes
- Angular animate
- Angular + stripe
- Angular ng-cloak
For example, define an objects that is linked (binded) to a webservice
-
angular views / Templating (View part of MVC)
-
$templateCache / Load an html chunk
-
angular $watch / Watch changes in the model
- ngInclude Include external Html / Is used for example to load a different page.
- ngController Define the controller who is in charge of the following chunk of html
- ngInit / Function to be launched immediately
- ngClick / Function to be launched when clicking
- ngShow / show if the value is true
- ngBind / Equivalent of {{}} but as an atribute. Could be useful as an alternative to ngCloak in order not to show the non already interpreted variable name {{var}}
- angular Upload : Contributed module to upload files
- Angular snap : Facebook slider http://jtrussell.github.io/angular-snap.js/#