Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Seminario Angular JS
Search
Paradigma
February 08, 2013
Technology
3
210
Seminario Angular JS
Seminario de Angular JS presentado por Luis Calvo en Paradigma Tecnológico
Paradigma
February 08, 2013
Tweet
Share
More Decks by Paradigma
See All by Paradigma
Meetup Madrid Redis Users: Introducción a Redis
paradigma
0
130
Analysis of Websites as Graphs for SEO
paradigma
0
150
Introducción a Django
paradigma
1
480
Introduction to Google Analytics for web developers
paradigma
0
150
Apache Solr
paradigma
0
260
Introducción a Scala
paradigma
0
390
Usando metodologías ágiles en UX
paradigma
0
110
Bitcoin Protocol for Developers
paradigma
4
92
Groovy&Grails: Cambia la forma de desarrollar tus aplicaciones web
paradigma
0
66
Other Decks in Technology
See All in Technology
5年目から始める Vue3 サイト改善 #frontendo
tacck
PRO
3
230
今日から始めるAWSセキュリティ対策 3ステップでわかる実践ガイド
yoshidatakeshi1994
0
110
人工衛星のファームウェアをRustで書く理由
koba789
15
8.2k
フルカイテン株式会社 エンジニア向け採用資料
fullkaiten
0
8.8k
開発者を支える Internal Developer Portal のイマとコレカラ / To-day and To-morrow of Internal Developer Portals: Supporting Developers
aoto
PRO
1
480
バイブスに「型」を!Kent Beckに学ぶ、AI時代のテスト駆動開発
amixedcolor
2
580
[ JAWS-UG 東京 CommunityBuilders Night #2 ]SlackとAmazon Q Developerで 運用効率化を模索する
sh_fk2
3
460
Claude Code でアプリ開発をオートパイロットにするためのTips集 Zennの場合 / Claude Code Tips in Zenn
wadayusuke
5
840
エンジニアリングマネージャーの成長の道筋とキャリア / Developers Summit 2025 KANSAI
daiksy
3
890
Codeful Serverless / 一人運用でもやり抜く力
_kensh
7
450
共有と分離 - Compose Multiplatform "本番導入" の設計指針
error96num
2
1.1k
Firestore → Spanner 移行 を成功させた段階的移行プロセス
athug
1
500
Featured
See All Featured
Scaling GitHub
holman
463
140k
Reflections from 52 weeks, 52 projects
jeffersonlam
352
21k
4 Signs Your Business is Dying
shpigford
184
22k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Typedesign – Prime Four
hannesfritz
42
2.8k
Building Better People: How to give real-time feedback that sticks.
wjessup
368
19k
Producing Creativity
orderedlist
PRO
347
40k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
Practical Orchestrator
shlominoach
190
11k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.6k
The Power of CSS Pseudo Elements
geoffreycrofte
77
6k
Transcript
Mejorando el HTML para crear Aplicaciones Web
QUÉ ES ANGULARJS • Framework en Javascript puro • Paradigma
MVC (MVVM) en el lado cliente • Open source • Creado y mantenido por Google
FEATURES • Templates • Inyección de dependencias • Data binding
(bidireccional) • RESTful • Routing
HELLO WORLD! <!doctype html> <html lang="en" ng-app> <head> <meta charset="UTF-8">
<title>Document</title> <script src=“angular.js"></script </head> <body> <h1>Hello World!!</h1> </body> </html>
FUNCIONAMIENTO
UN PASO MÁS <!doctype html> <html lang="en" ng-app> <head> <meta
charset="UTF-8"> <title>Document</title> <script src=“angular.js"></script </head> <body> Hello {{name}}!! <button ng-click=“action()”> <script> function MyCtrl($scope){ $scope.action = function(){ // bla bla bla }; $scope.name = “World!!”; } </script> </body> </html>
$SCOPE
ANGULAR RUNTIME