1 - Loading angular.js file and References
https://curran.github.io/screencasts/introToAngular/exampleViewer/#/ -> input ve output gözüküyor bunu tercih et.
https://github.com/oiyio/angular_examples_and_other_web_sources/tree/gh-pages/introToAngular
adresinde çoook işimize yaracak örnekler var. Video açıklamaları için : https://www.youtube.com/watch?v=TRrL5j3MIvo
https://plnkr.co/
http://codepen.io/ -> çok güzel örnek projeler var hem source kod hem output'lar mevcut.
https://github.com/angular/angular.js/wiki/JSFiddle-Examples -> çok güzel jsfiddle örnekleri
https://groups.google.com/forum/#!forum/angular google group
https://dribbble.com/ -> logo resim gibi designlar
http://skillgun.com/angularjs/interview-questions-and-answers test soru-cevap
https://github.com/johnpapa/angular-styleguide style gruide'ıu okumamı tavsiye etti tecrübeli bir isim forumda.
We need to load the angular.js file from one of the CDNs or from the local disk.
If you'd like to load it from Google CDN then put this in your HTML. Bu örnekte bunu kullanacağız:
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"></script>
If you'd like to use the Cloudflare CDNjs, use this :
<script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.2/angular.min.js"></script>
Ayrıca angular.min.js veya angular.js dosyasını indirip de kullanabiliriz:
<script src="angular.min.js"></script>
No comments:
Post a Comment