Difference between revisions of "Angular"

From air
Jump to navigation Jump to search
Line 7: Line 7:
 
[https://drive.google.com/open?id=0B_0n2CoDWpWQNV9iM3J4ck1YNnM Transparents du Cours (Alexandre Demeure)]
 
[https://drive.google.com/open?id=0B_0n2CoDWpWQNV9iM3J4ck1YNnM Transparents du Cours (Alexandre Demeure)]
   
=Tutoriel=
+
=Tutoriel (Officiel)=
 
https://docs.angularjs.org/tutorial
 
https://docs.angularjs.org/tutorial
 
<pre>
 
<pre>
Line 23: Line 23:
 
npm run protractor
 
npm run protractor
 
</pre>
 
</pre>
  +
  +
==Step 0==
  +
  +
<pre>
  +
git checkout -f step-0
  +
</pre>
  +
  +
  +
  +
=TODO Tutoriel=
  +
  +
http://todomvc.com/examples/angularjs/#/

Revision as of 15:21, 10 November 2015

https://angularjs.org/

HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.


Transparents

Transparents du Cours (Alexandre Demeure)

Tutoriel (Officiel)

https://docs.angularjs.org/tutorial

git clone --depth=14 https://github.com/angular/angular-phonecat.git
cd angular-phonecat
node --version
npm install
bower install
npm start

Browse http://localhost:8000/app/index.html

npm run protractor

Step 0

git checkout -f step-0


TODO Tutoriel

http://todomvc.com/examples/angularjs/#/