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
Patterns of Patterns
denyspoltorak
0
1.4k
副作用をどこに置くか問題:オブジェクト指向で整理する設計判断ツリー
koxya
1
590
Grafana:建立系統全知視角的捷徑
blueswen
0
320
Rust 製のコードエディタ “Zed” を使ってみた
nearme_tech
PRO
0
140
AIで開発はどれくらい加速したのか?AIエージェントによるコード生成を、現場の評価と研究開発の評価の両面からdeep diveしてみる
daisuketakeda
1
970
インターン生でもAuth0で認証基盤刷新が出来るのか
taku271
0
190
組織で育むオブザーバビリティ
ryota_hnk
0
170
今から始めるClaude Code超入門
448jp
7
8.4k
フルサイクルエンジニアリングをAI Agentで全自動化したい 〜構想と現在地〜
kamina_zzz
0
400
Implementation Patterns
denyspoltorak
0
280
15年続くIoTサービスのSREエンジニアが挑む分散トレーシング導入
melonps
2
170
Honoを使ったリモートMCPサーバでAIツールとの連携を加速させる!
tosuri13
1
170
Featured
See All Featured
Into the Great Unknown - MozCon
thekraken
40
2.2k
How To Speak Unicorn (iThemes Webinar)
marktimemedia
1
380
Keith and Marios Guide to Fast Websites
keithpitt
413
23k
Organizational Design Perspectives: An Ontology of Organizational Design Elements
kimpetersen
PRO
1
110
Between Models and Reality
mayunak
1
180
Java REST API Framework Comparison - PWX 2021
mraible
34
9.1k
How Fast Is Fast Enough? [PerfNow 2025]
tammyeverts
3
450
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.3k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4.2k
Paper Plane (Part 1)
katiecoart
PRO
0
4k
How to train your dragon (web standard)
notwaldorf
97
6.5k
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
300
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!