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
LT 2025-06-30: プロダクトエンジニアの役割
yamamotok
0
720
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
510
なぜ「共通化」を考え、失敗を繰り返すのか
rinchoku
1
640
A2A プロトコルを試してみる
azukiazusa1
2
1.3k
AIと”コードの評価関数”を共有する / Share the "code evaluation function" with AI
euglena1215
1
150
都市をデータで見るってこういうこと PLATEAU属性情報入門
nokonoko1203
1
600
技術同人誌をMCP Serverにしてみた
74th
1
630
地方に住むエンジニアの残酷な現実とキャリア論
ichimichi
5
1.5k
High-Level Programming Languages in AI Era -Human Thought and Mind-
hayat01sh1da
PRO
0
760
Is Xcode slowly dying out in 2025?
uetyo
1
260
Railsアプリケーションと パフォーマンスチューニング ー 秒間5万リクエストの モバイルオーダーシステムを支える事例 ー Rubyセミナー 大阪
falcon8823
5
1.1k
チームで開発し事業を加速するための"良い"設計の考え方 @ サポーターズCoLab 2025-07-08
agatan
0
300
Featured
See All Featured
Making Projects Easy
brettharned
116
6.3k
Agile that works and the tools we love
rasmusluckow
329
21k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
181
53k
Documentation Writing (for coders)
carmenintech
72
4.9k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Mobile First: as difficult as doing things right
swwweet
223
9.7k
Why Our Code Smells
bkeepers
PRO
337
57k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
960
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
35
2.4k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
The Cult of Friendly URLs
andyhume
79
6.5k
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!