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
AngularJS - Framework for Apps
Search
Sean Lin
November 30, 2014
Programming
0
38
AngularJS - Framework for Apps
Slides from talk given at DevCon Yangon 2014
Sean Lin
November 30, 2014
Tweet
Share
Other Decks in Programming
See All in Programming
Amazon Bedrockを活用したRAGの品質管理パイプライン構築
tosuri13
4
250
CSC307 Lecture 07
javiergs
PRO
0
550
AgentCoreとHuman in the Loop
har1101
5
220
IFSによる形状設計/デモシーンの魅力 @ 慶應大学SFC
gam0022
1
300
360° Signals in Angular: Signal Forms with SignalStore & Resources @ngLondon 01/2026
manfredsteyer
PRO
0
120
生成AIを使ったコードレビューで定性的に品質カバー
chiilog
1
240
今から始めるClaude Code超入門
448jp
7
8.4k
Apache Iceberg V3 and migration to V3
tomtanaka
0
150
Architectural Extensions
denyspoltorak
0
270
今こそ知るべき耐量子計算機暗号(PQC)入門 / PQC: What You Need to Know Now
mackey0225
3
370
AIと一緒にレガシーに向き合ってみた
nyafunta9858
0
170
KIKI_MBSD Cybersecurity Challenges 2025
ikema
0
1.3k
Featured
See All Featured
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
96
jQuery: Nuts, Bolts and Bling
dougneiner
65
8.4k
ラッコキーワード サービス紹介資料
rakko
1
2.2M
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
170
Visualization
eitanlees
150
17k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
Designing Powerful Visuals for Engaging Learning
tmiket
0
220
How To Speak Unicorn (iThemes Webinar)
marktimemedia
1
380
A designer walks into a library…
pauljervisheath
210
24k
Breaking role norms: Why Content Design is so much more than writing copy - Taylor Woolridge
uxyall
0
160
For a Future-Friendly Web
brad_frost
182
10k
How People are Using Generative and Agentic AI to Supercharge Their Products, Projects, Services and Value Streams Today
helenjbeal
1
120
Transcript
AngularJS Framework for Apps @geeksean
Building Web Apps
Building modern Web Apps
Framework for building Single-Page Applications YouTube App for PlayStations
Why Angular?
For building high quality apps with standards
• Routing • Two-way data binding • Reusable, Clean, Modular
• Template • Localization • Directives • Mobile Ready
AngularJS is very fast and lightweight. latest minified version is
at 124kb
Two-way binding <!doctype html> <html ng-app> <head> <script src="angular.min.js"></script> </head>
<body> <div> <label>Name:</label> <input type="text" ng-model="yourName" placeholder="Enter a name here"> <hr> <h1>Hello {{yourName}}!</h1> </div> </body> </html>
Directives • Easy and simple way to add ‘widgets’ to
your apps. • Reusable • data-specific-logic • web components (coming in Angular 2.0) angular.module('docsSimpleDirective', []) .controller('Controller', ['$scope', function($scope) { $scope.customer = { name: 'Naomi', address: '1600 Amphitheatre' }; }]) .directive('myCustomer', function() { return { template: 'Name: {{customer.name}} Address: {{customer.address}}' }; }); <div ng-controller="Controller"> <div my-customer></div> </div>
Mobile Ready • ngTouch • offline storage (WebSQL, IndexedDB or
localStorage) • ngSwipe • angular-gestures • Ionic Framework
ngTouch, ngSwipe and gestures • Detect and handle touch events
• Register multidirectional swipe events • Handle tap, double tap, swipe, drag, pinch and rotate events with angular-gestures
Native App with Ionic Framework
• Performance focused with minimal DOM and zero jQuery •
Hardware accelerated transitions • CLI to create, build, test and deploy apps • Build native apps for iOS and Android with Cordova
Looking Ahead • Material Design for Angular • Angular Dart
• Angular UI (including Angular Bootstrap) • ZURB’s Foundation for Apps (coming in December) • Support for various languages, frameworks and tools • Build Chrome Apps and Extensions • Car Dashboard System based on AngularJS (General Motors)
AngularJS Myanmar on FB: https://www.facebook.com/groups/angularjsmyanmar/ Thanks!