SlideShare a Scribd company logo
1 of 45
Download to read offline
Mobile	HTML5	websites	and	Hybrid	Apps	with	AngularJS
How	to	code	today	with	tomorrow	tools	-	mobile	edition
Carlo	Bonamico	-	@carlobonamico
NIS	s.r.l.
carlo.bonamico@gmail.com
carlo.bonamico@nispro.it
Web
0
AngularJS	lets	you	use	today	the	features	of	next-generation
web	standards,
making	front-end	development	more	productive	and	fun
What's	better,	it	provides	its	"magic"	tools	to	both	web	AND
mobile	apps
databinding,	dependency	injection
modularity,	composable	and	event-driven	architecture
Thiscode-based 	interactive	talk	will	share	some	lessons
learned
how	to	structure	applications
tune	bandwidth	and	performance
interact	with	mobile-specific	elements	such	as	touch,
sensors
native-looking	UX	with	Ionic	Framework
In	short
1
I	do	not	want	to	join	the	fight	;-)
The	web	tends	to	always	be	more	powerful	than	people	think!
and	the	gap	with	native	will	only	become	smaller	with	time
There	are	many	use	cases	for	web-based	sites	and	hybrid
apps	(HTML5	packed	in	an	app)
avoiding	install	on	device
ensuring	always	latest	version
platform	support:	iOS,	Android,	Windows	Phone...
easier	and	more	familiar	development	workflow
And	my	favorite...
to	use	Angular	magic!
Web	vs	Native
2
Open	Source	framwework
fast-growing
great	community
http://www.angularjs.org
Lets	you	adopt	future	web	architecture	and	tools	today
anticipate	Web	Components	and	EcmaScript	6
Create	modular,	robust,	testable	apps
So	why	AngularJS
3
Dependency	Injection
split	component	definition	from	component	wiring
Module	composition	e.g.
common	modules
mobile-only	components
desktop-only	components
What	you	get:	write	less	code,	reuse	more	the	code	you	write!
Angular	gives	structure	and	modularity
4
...isn't	a	web	/	JS	Mobile	app	unusably	slow?
Let's	try...
This	presentation	is	an	Angular-based	Single	Page	Application
Now	we	launch	it	on	a	phone	and	explore	it	with	Chrome	usb	debugging
But...
5
about:inspect
enable	port	forwarding	from	laptop	to	phone
open	http://localhost:8000 	on	the	phone
Discovering	the	device
6
Monitoring	CPU	usage	and	FPS
7
Inspecting	the	page	on	the	phone
8
A	View:	index.html
a	style.css
peppered-up	with	AngularJS	'ng-something'	directives
A	model
data:	slides.md
code:	array	of	slide	object
A	controller
script.js
What's	inside
9
var	slide	=	{
																				number:	i	+	1,
																				title:	"Title	"	+	i,
																				content:	"#Title	n	markdown	sample",
																				html:	"",
																				background:	"backgroundSlide"
				};
The	model
10
ngSlides.service('slidesMarkdownService',	function	($http)	{
				var	converter	=	new	Showdown.converter();
				return	{
								getFromMarkdown:	function	(path)	{
												var	slides	=	[];
												$http({method:	'GET',	url:	path}).
																success(function	(data,	status,	headers,	config)	{
																				var	slidesToLoad	=	data.split(separator);	//two	dashe
s
																				for	(i	=	0;	i	<	slidesToLoad.length;	i++)	{
																								var	slide	=	{
																												content:	slidesToLoad[i],
																												//..	init	other	slide	fields
																								};
																								slide.html	=	converter.makeHtml(slide.content);
																								slides.push(slide);
																				}
																});
												return	slides;
								}	}	})
A	service	to	load	slides	from	markdown
11
binding	the	model	to	the	html
<body	ng-app="ngSlides"	ng-class="slides[currentSlide].background"
						ng-controller="presentationCtrl">
<div	id="slidesContainer"	class="slidesContainer"	>
				<div	class="slide"	ng-repeat="slide	in	slides"
																							ng-show="slide.number	==	currentSlide"	>
								<div	ng-bind-html="slide.html"></div>
								<h4	class="number">{{slide.number}}</h4>
				</div>
</div>
</body>
and	a	very	simple	css	for	positioning	elements	in	the	page
A	simple	declarative	view
12
ngSlides.controller("presentationCtrl",	function	($scope,	$http,
																																						$rootScope,	slidesMarkdownService)	
{
				$scope.slides	=	slidesMarkdownService.getFromMarkdown('slides.md');
				$scope.currentSlide	=	0;
				$scope.next	=	function	()	{
								$scope.currentSlide	=	$scope.currentSlide	+	1;
				};
				$scope.previous	=	function	()	{
								$scope.currentSlide	=	$scope.currentSlide	-	1;
				};
});
A	controller	focused	on	interaction
13
Any	sufficiently	advanced	technology	is	indistinguishable	from	magic.
Arthur	C.	Clarcke
Add	search	within	the	slides	in	one	line
<div	ng-repeat="slide	in	slides	|	filter:q">...</div>
where	q	is	a	variable	containing	the	search	keyword
AngularJS	magic
14
Two-way	Databinding
split	the	view	from	the	logic	 {{slide.number}}
Dependency	Injection
gives	decoupling,	testability	&	enriching	of	code	and	tags
		function	SlidesCtrl($scope,	SlidesService)	{
				SlidesService.loadFromMarkdown('slides.md');
		}
The	power	of	composition	-	of
modules
module('slides',['slides.markdown'])
directives
<h1	ng-show='enableTitle'	ng-class='titleClass'>..</h1>
filters
slide	in	slides	|	filter:q	|	orderBy:title	|	limit:3
...
AngularJS	magic	is	made	of
15
But	what's	more	important,
less	"low	value"	code
more	readable	code
So	you	can	concentrate	on	your	application	idea
AngularJS	is	opinionated
but	it	will	let	you	follow	a	different	way	in	case	you	really
need	it
So	Angular	let	you	write	less	code
16
Speed	can	mean	many	things
UX	speed	vs	processing	speed
databinding	lets	you	easily	display	data	progressively
client-side	rich	models	and	filtering	let	you	respond	quickly
to	user	input
network	delays	vs	app	response	times
But	the	challenge	isn't	just	being	performant
Being	an	awesome	mobile	app
handle	gestures
respect	user	expectations	(e.g.	swipeable	cards	)
manage	navigation
manage	app	state	and	off-line	availability
So,	back	to	our	mobile	apps...
17
reduce	DOM	manipulation
use	simple	markup
move	all	styling	to	CSS
no	JS	Animation,	use	CSS3
HW	accelerated	transitions
optimize	your	databindings
https://www.exratione.com/2013/12/considering-speed-and-
slowness-in-angularjs/
bind	once	and	targeted	bindings
https://github.com/Pasvaz/bindonce
Performance	Tips
18
Tune	with	AngularJS	Batarang
https://github.com/angular/angularjs-batarang
Performance	Tuning
19
The	biggest	cost	is	opening	a	connection,	not	transferring
files
use	HTTP	Keep-alive
enable	GZip	compression
https://developers.google.com/speed/pagespeed/module
Local	manipulation	of	data	greatly	reduces	network	traffic
Local	DB	and	sync
Bandwidth	optimizations
20
Module	ng-touch
fastclick:	eliminate	the	300ms	delay
easily	manage	swipes	 <div	ng-swipe-left="next()"	>
for	advanced	cases:
ionic-gestures
hammer.js
Support	Touch	and	Gestures
21
On	the	device
Session	storage
Local	storage
lawnchair
PouchDB	http://pouchdb.com/
In	the	cloud
Mongolab	http://mongolab.com
Firebase	with	AngularFire	https://www.firebase.com
BaasBox	http://www.baasbox.com
Storing	state
22
HTML5	standard	APIs	support	only	some	sensors
location	(very	good	support)
orientation
acceleration
Additional	sensors	require	the	PhoneGap	APIs
need	to	wrap	all	callbacks	with
$apply()
or	better,	a	dedicated	service
to	notify	Angular	of	changes	occurred	out	of	its	lifecycle
Managing	sensors
23
Chrome	remote	debugging	and	screencast
https://developers.google.com/chrome-developer-
tools/docs/remote-debugging
chrome://inspect/#devices
Emulate	device	resolutions,	DPIs,	sensors:
Chrome	emulator
Ripple	Emulator	http://emulate.phonegap.com
How	to	develop	for	mobile?
24
Development-time	structure
multiple	files
component/dependency	managers	(bower...)
Compile-time	structure
limited	number	of	files
concatenation
minification
Use	a	toolchain
Marcello	Teodori's	talk	on	JS	Power	Tools
Issues
25
first	phase:	prototyping	on	a	Desktop	browser
second	phase:	unit	testing
way	easier	with	AngularJS
third	phase:	on	device	testing
Chrome	on-device	debugging
Testable	mobile	apps?
26
Phonegap
http://phonegap.com/
https://cordova.apache.org/
Phonegap	Build
http://build.phonegap.com
Chrome	Apps	for	Mobile
http://blog.chromium.org/2014/01/run-chrome-apps-on-
mobile-using-apache.html
Packaging	apps	for	markets
27
Cordova	Browser
you	install	it	once
and	open	your	code	on	your	web	server
continuous	refresh	without	reinstalling	the	app
Development	tips
28
or	better	the	UX	-	User	Experience?
Comparing	mobile	web	frameworks
http://moduscreate.com/5-best-mobile-web-app-frameworks-
ionic-angulalrjs/
JQuery	Mobile
widgets-only
DOM-heavvy
Angular	integration	is	not	simple	(different	lifecycles)
at	most,	JQ	Mobile	for	CSS	and	Angular	for	navigation	and
logic
What	about	the	UI?
29
AngularJS-based,	Open	Source
performance	obsessed
mobile-looking
extensible
http://ionicframework.com/
http://ionicframework.com/getting-started/
http://ionicframework.com/docs/guide/
Enter	Ionic	Framework
30
Ionic	CSS
Ionic	Icons
Ionic	Directives
and	support	Tooling
What's	inside?
31
elegant	yet	very	lightweight
<div	class="list">
		<div	class="item	item-divider">
				Candy	Bars
		</div>
		<a	class="item"	href="#">
				Butterfinger
		</a>
</div>
http://ionicframework.com/docs/
3D	animations,	HW	accelerated
sass-based	for	custom	theming
500	free	icons	(ionicons)
Ionic	CSS
32
mobile	navigation	and	interactions
<ion-list>
		<ion-item	ng-repeat="item	in	items"
				item="item"
				can-swipe="true"
				option-buttons="itemButtons">
		</ion-item>
</ion-list>
services	for
gestures
navigation
http://ionicframework.com/docs/api
Ionic	Directives
33
http://plnkr.co/edit/Mcw6F2BQP3RbB8ZhBYRl?p=preview
Let's	play	around...	(with	Live	Reload)
34
based	on	UI-Router
http://angular-ui.github.io/ui-router
sub-views	(e.g.	Tabs)
per-view	navigation	history
UI	Gallery
http://ionicframework.com/present-ionic/slides/#/16
Navigation
35
PhoneGap	based	build	chain
$	npm	-g	install	ionic
$	ionic	start	myApp	tabs
$	cd	myApp
$	ionic	platform	add	ios
$	ionic	build	ios
$	ionic	emulate	ios
Ionic	Tooling
36
AngularJS	2.0	will	be	Mobile	First
performance
browser	support
http://blog.angularjs.org/2014/03/angular-20.html
Web	Components	on	Mobile
EcmaScript	6	-	Object.observe() 	->	ultrafast	binding
The	Future
37
AngularJS	can	be	viable	on	mobile
interactivity	in	plain	HTML5	views
AngularJS	changes	your	way	of	working	(for	the	better!)
let	you	free	of	concentrating	on	your	ideas
makes	for	a	way	faster	development	cycle
makes	for	a	way	faster	interaction	with	customer	cycle
essential	for	Continuous	Delivery!
Lessons	learnt
38
Like	all	the	magic	wands,	you	could	end	up	like	Mikey	Mouse
as	the	apprentice	sorcerer
Getting	started	is	very	easy
But	to	go	further	you	need	to	learn	the	key	concepts
scopes
dependency	injection
directives
promises
So	get	your	training!
Codemotion	training	(june	2014)
http://training.codemotion.it/
NEW!	Advanced	AngularJS	course
coming	in	July-September	2014
Lessons	learnt
39
Books
http://www.ng-book.com/	-	Recommended!
AngularJS	and	.NET	http://henriquat.re
Online	tutorials	and	video	trainings:
http://www.yearofmoo.com/
http://egghead.io
All	links	and	reference	from	my	Codemotion	Workshop
https://github.com/carlobonamico/angularjs-quickstart
https://github.com/carlobonamico/angularjs-
quickstart/blob/master/references.md
Full	lab	from	my	Codemotion	Workshop
https://github.com/carlobonamico/angularjs-quickstart
To	learn	more
40
Optimizing	AngularJS	for	mobile
http://blog.revolunet.com/angular-for-mobile
http://www.ng-newsletter.com/posts/angular-on-mobile.html
https://www.youtube.com/watch?v=xOAG7Ab_Oz0
http://www.bennadel.com/blog/2492-What-A-Select-watch-
Teaches-Me-About-ngModel-And-AngularJS.htm
Web	Components
http://mozilla.github.io/brick/docs.html
http://www.polymer-project.org/
Even	more
41
Explore	these	slides
https://github.com/carlobonamico/mobile-html5-websites-
and-hybrid-apps-with-angularjs
https://github.com/carlobonamico/angularjs-future-web-
development-slides
My	presentations
http://slideshare.net/carlo.bonamico
Follow	me	at	@carlobonamico	/	@nis_srl
will	publish	these	slides	in	a	few	days
Attend	my	Codemotion	trainings
http://training.codemotion.it/
Thank	you!
42
Mobile HTML5 websites and Hybrid Apps with AngularJS
Mobile HTML5 websites and Hybrid Apps with AngularJS

More Related Content

What's hot

I like i phone and android but know .net
I like i phone and android but know .netI like i phone and android but know .net
I like i phone and android but know .net
Chris Love
 
Ahmed Saad Ashour
Ahmed Saad AshourAhmed Saad Ashour
Ahmed Saad Ashour
Ahmed Saad
 
Introduction to Mobile Application Development
Introduction to Mobile Application DevelopmentIntroduction to Mobile Application Development
Introduction to Mobile Application Development
shikishiji
 
Case study: integrating azure with google app engine
Case study: integrating azure with google app engine Case study: integrating azure with google app engine
Case study: integrating azure with google app engine
Miguel Scotter
 
Android crash course
Android crash courseAndroid crash course
Android crash course
Showmax Engineering
 
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGapBuilding Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Nick Landry
 
AdamVisserResume
AdamVisserResumeAdamVisserResume
AdamVisserResume
Adam Visser
 

What's hot (20)

I like i phone and android but know .net
I like i phone and android but know .netI like i phone and android but know .net
I like i phone and android but know .net
 
FRONT-END WEB DEVELOPMENT WITH REACTJS
FRONT-END WEB DEVELOPMENT WITH REACTJSFRONT-END WEB DEVELOPMENT WITH REACTJS
FRONT-END WEB DEVELOPMENT WITH REACTJS
 
What Web Framework To Use?
What Web Framework To Use?What Web Framework To Use?
What Web Framework To Use?
 
Open Source World : Using Web Technologies to build native iPhone and Android...
Open Source World : Using Web Technologies to build native iPhone and Android...Open Source World : Using Web Technologies to build native iPhone and Android...
Open Source World : Using Web Technologies to build native iPhone and Android...
 
Developing Enterprise-Grade Mobile Applications
Developing Enterprise-Grade Mobile ApplicationsDeveloping Enterprise-Grade Mobile Applications
Developing Enterprise-Grade Mobile Applications
 
Hai_Bui
Hai_BuiHai_Bui
Hai_Bui
 
Ahmed Saad Ashour
Ahmed Saad AshourAhmed Saad Ashour
Ahmed Saad Ashour
 
Samsung
SamsungSamsung
Samsung
 
Uses of java
Uses of javaUses of java
Uses of java
 
Introduction to Mobile Application Development
Introduction to Mobile Application DevelopmentIntroduction to Mobile Application Development
Introduction to Mobile Application Development
 
PhoneGap: Building Mobile Applications with HTML/JS
PhoneGap: Building Mobile Applications with HTML/JSPhoneGap: Building Mobile Applications with HTML/JS
PhoneGap: Building Mobile Applications with HTML/JS
 
MEAN Vs MERN Stack | Detailed Comparison Between MEAN & MERN Stack
MEAN Vs MERN Stack | Detailed Comparison Between MEAN & MERN StackMEAN Vs MERN Stack | Detailed Comparison Between MEAN & MERN Stack
MEAN Vs MERN Stack | Detailed Comparison Between MEAN & MERN Stack
 
Case study: integrating azure with google app engine
Case study: integrating azure with google app engine Case study: integrating azure with google app engine
Case study: integrating azure with google app engine
 
Android crash course
Android crash courseAndroid crash course
Android crash course
 
Javascript frameworks
Javascript frameworksJavascript frameworks
Javascript frameworks
 
Phone gap
Phone gapPhone gap
Phone gap
 
My CV
My CVMy CV
My CV
 
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGapBuilding Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
Building Mobile Cross-Platform Apps with HTML5, jQuery Mobile & PhoneGap
 
AdamVisserResume
AdamVisserResumeAdamVisserResume
AdamVisserResume
 
Building Cross-Platform Mobile Apps
Building Cross-Platform Mobile AppsBuilding Cross-Platform Mobile Apps
Building Cross-Platform Mobile Apps
 

Viewers also liked

Mobile App Development
Mobile App DevelopmentMobile App Development
Mobile App Development
Chris Morrell
 
Lecture5 Expert Systems And Artificial Intelligence
Lecture5 Expert Systems And Artificial IntelligenceLecture5 Expert Systems And Artificial Intelligence
Lecture5 Expert Systems And Artificial Intelligence
Kodok Ngorex
 

Viewers also liked (13)

Ionic CLI Adventures
Ionic CLI AdventuresIonic CLI Adventures
Ionic CLI Adventures
 
Step by step guide to build ionic hybrid app using cordova android
Step by step guide to build ionic hybrid app using cordova androidStep by step guide to build ionic hybrid app using cordova android
Step by step guide to build ionic hybrid app using cordova android
 
Cordova + Ionic + MobileFirst
Cordova + Ionic + MobileFirstCordova + Ionic + MobileFirst
Cordova + Ionic + MobileFirst
 
Workshop on Hybrid App Development with Ionic Framework
Workshop on Hybrid App Development with Ionic FrameworkWorkshop on Hybrid App Development with Ionic Framework
Workshop on Hybrid App Development with Ionic Framework
 
Hybrid app development with ionic
Hybrid app development with ionicHybrid app development with ionic
Hybrid app development with ionic
 
Hybrid Mobile App Development - Xamarin
Hybrid Mobile App Development - XamarinHybrid Mobile App Development - Xamarin
Hybrid Mobile App Development - Xamarin
 
Intro to Ionic for Building Hybrid Mobile Applications
Intro to Ionic for Building Hybrid Mobile ApplicationsIntro to Ionic for Building Hybrid Mobile Applications
Intro to Ionic for Building Hybrid Mobile Applications
 
Building an Ionic hybrid mobile app with TypeScript
Building an Ionic hybrid mobile app with TypeScript Building an Ionic hybrid mobile app with TypeScript
Building an Ionic hybrid mobile app with TypeScript
 
Building Mobile Apps with Cordova , AngularJS and Ionic
Building Mobile Apps with Cordova , AngularJS and IonicBuilding Mobile Apps with Cordova , AngularJS and Ionic
Building Mobile Apps with Cordova , AngularJS and Ionic
 
Ionic adventures - Hybrid Mobile App Development rocks
Ionic adventures - Hybrid Mobile App Development rocksIonic adventures - Hybrid Mobile App Development rocks
Ionic adventures - Hybrid Mobile App Development rocks
 
Mobile App Development
Mobile App DevelopmentMobile App Development
Mobile App Development
 
Lecture5 Expert Systems And Artificial Intelligence
Lecture5 Expert Systems And Artificial IntelligenceLecture5 Expert Systems And Artificial Intelligence
Lecture5 Expert Systems And Artificial Intelligence
 
Hybrid Apps with Angular & Ionic Framework
Hybrid Apps with Angular & Ionic FrameworkHybrid Apps with Angular & Ionic Framework
Hybrid Apps with Angular & Ionic Framework
 

Similar to Mobile HTML5 websites and Hybrid Apps with AngularJS

Top Java Script Frameworks For Mobile App Development
Top Java Script Frameworks For Mobile App DevelopmentTop Java Script Frameworks For Mobile App Development
Top Java Script Frameworks For Mobile App Development
ValueCoders
 
The mobile landscape london tfm&a 2013
The mobile landscape london tfm&a 2013The mobile landscape london tfm&a 2013
The mobile landscape london tfm&a 2013
Mathias Strandberg
 
The challenges of building mobile HTML5 applications - FEEC Brazil 2012 - Recife
The challenges of building mobile HTML5 applications - FEEC Brazil 2012 - RecifeThe challenges of building mobile HTML5 applications - FEEC Brazil 2012 - Recife
The challenges of building mobile HTML5 applications - FEEC Brazil 2012 - Recife
Caridy Patino
 
App vs web lunch and learn @ valtech
App vs web lunch and learn @ valtech App vs web lunch and learn @ valtech
App vs web lunch and learn @ valtech
Mathias Strandberg
 
Mobile development-e mag-version3
Mobile development-e mag-version3Mobile development-e mag-version3
Mobile development-e mag-version3
nesrine attia
 

Similar to Mobile HTML5 websites and Hybrid Apps with AngularJS (20)

Top Java Script Frameworks For Mobile App Development
Top Java Script Frameworks For Mobile App DevelopmentTop Java Script Frameworks For Mobile App Development
Top Java Script Frameworks For Mobile App Development
 
Is Ionic good for Mobile app development?
Is Ionic good for Mobile app development?Is Ionic good for Mobile app development?
Is Ionic good for Mobile app development?
 
Ionic - Hybrid Mobile Application Framework
Ionic - Hybrid Mobile Application FrameworkIonic - Hybrid Mobile Application Framework
Ionic - Hybrid Mobile Application Framework
 
Responsive Design in 2016
Responsive Design in 2016Responsive Design in 2016
Responsive Design in 2016
 
Web Application Development in 2023.pdf
Web Application Development in 2023.pdfWeb Application Development in 2023.pdf
Web Application Development in 2023.pdf
 
Chrome for android_devfestx
Chrome for android_devfestxChrome for android_devfestx
Chrome for android_devfestx
 
The Mobile Landscape - Do you really need an app?
The Mobile Landscape - Do you really need an app?The Mobile Landscape - Do you really need an app?
The Mobile Landscape - Do you really need an app?
 
The mobile landscape london tfm&a 2013
The mobile landscape london tfm&a 2013The mobile landscape london tfm&a 2013
The mobile landscape london tfm&a 2013
 
The challenges of building mobile HTML5 applications - FEEC Brazil 2012 - Recife
The challenges of building mobile HTML5 applications - FEEC Brazil 2012 - RecifeThe challenges of building mobile HTML5 applications - FEEC Brazil 2012 - Recife
The challenges of building mobile HTML5 applications - FEEC Brazil 2012 - Recife
 
Web Application Development- Best Practices in 2023.
Web Application Development- Best Practices in 2023.Web Application Development- Best Practices in 2023.
Web Application Development- Best Practices in 2023.
 
Top 10 Mobile App Development Frameworks for 2023.
Top 10 Mobile App Development Frameworks for 2023.Top 10 Mobile App Development Frameworks for 2023.
Top 10 Mobile App Development Frameworks for 2023.
 
Phonegap vs Sencha Touch vs Titanium
Phonegap vs Sencha Touch vs TitaniumPhonegap vs Sencha Touch vs Titanium
Phonegap vs Sencha Touch vs Titanium
 
Intel AppUp Day Bologna
Intel AppUp Day BolognaIntel AppUp Day Bologna
Intel AppUp Day Bologna
 
Future of Mobile Web Application and Web App Store
Future of Mobile Web Application and Web App StoreFuture of Mobile Web Application and Web App Store
Future of Mobile Web Application and Web App Store
 
The Top Technologies Used To Develop a Mobile App.pdf
The Top Technologies Used To Develop a Mobile App.pdfThe Top Technologies Used To Develop a Mobile App.pdf
The Top Technologies Used To Develop a Mobile App.pdf
 
The Top Technologies Used To Develop a Mobile App.pdf
The Top Technologies Used To Develop a Mobile App.pdfThe Top Technologies Used To Develop a Mobile App.pdf
The Top Technologies Used To Develop a Mobile App.pdf
 
App vs web lunch and learn @ valtech
App vs web lunch and learn @ valtech App vs web lunch and learn @ valtech
App vs web lunch and learn @ valtech
 
Web App Development Technologies You Should Know
Web App Development Technologies You Should KnowWeb App Development Technologies You Should Know
Web App Development Technologies You Should Know
 
Top Mobile App Development Frameworks in 2023.pdf
Top Mobile App Development Frameworks in 2023.pdfTop Mobile App Development Frameworks in 2023.pdf
Top Mobile App Development Frameworks in 2023.pdf
 
Mobile development-e mag-version3
Mobile development-e mag-version3Mobile development-e mag-version3
Mobile development-e mag-version3
 

More from Carlo Bonamico

Nasa World Wind For Java (by Fabrizio Giudici)
Nasa World Wind For Java (by Fabrizio Giudici)Nasa World Wind For Java (by Fabrizio Giudici)
Nasa World Wind For Java (by Fabrizio Giudici)
Carlo Bonamico
 

More from Carlo Bonamico (12)

Build Your Own Angular Component Library
Build Your Own Angular Component LibraryBuild Your Own Angular Component Library
Build Your Own Angular Component Library
 
Continuous Security: Zap security bugs now Codemotion-2015
Continuous Security: Zap security bugs now Codemotion-2015Continuous Security: Zap security bugs now Codemotion-2015
Continuous Security: Zap security bugs now Codemotion-2015
 
Angular 1.x reloaded: improve your app now! and get ready for 2.0
Angular 1.x reloaded:  improve your app now! and get ready for 2.0Angular 1.x reloaded:  improve your app now! and get ready for 2.0
Angular 1.x reloaded: improve your app now! and get ready for 2.0
 
Real World AngularJS recipes: beyond TodoMVC
Real World AngularJS recipes: beyond TodoMVCReal World AngularJS recipes: beyond TodoMVC
Real World AngularJS recipes: beyond TodoMVC
 
codemotion-docker-2014
codemotion-docker-2014codemotion-docker-2014
codemotion-docker-2014
 
Infrastructure as Data with Ansible for easier Continuous Delivery
Infrastructure as Data with Ansible for easier Continuous DeliveryInfrastructure as Data with Ansible for easier Continuous Delivery
Infrastructure as Data with Ansible for easier Continuous Delivery
 
Infrastructure as Data with Ansible
Infrastructure as Data with AnsibleInfrastructure as Data with Ansible
Infrastructure as Data with Ansible
 
Is my Web Application secure? OWASP Top Ten Security Risks and Beyond...
Is my Web Application secure? OWASP Top Ten Security Risks and Beyond...Is my Web Application secure? OWASP Top Ten Security Risks and Beyond...
Is my Web Application secure? OWASP Top Ten Security Risks and Beyond...
 
Maven 2 in the real world
Maven 2 in the real worldMaven 2 in the real world
Maven 2 in the real world
 
Nasa World Wind For Java (by Fabrizio Giudici)
Nasa World Wind For Java (by Fabrizio Giudici)Nasa World Wind For Java (by Fabrizio Giudici)
Nasa World Wind For Java (by Fabrizio Giudici)
 
Continuous Integration With Hudson (and Jenkins)
Continuous Integration With Hudson (and Jenkins)Continuous Integration With Hudson (and Jenkins)
Continuous Integration With Hudson (and Jenkins)
 
Build Automation Tips
Build Automation TipsBuild Automation Tips
Build Automation Tips
 

Recently uploaded

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 

Recently uploaded (20)

Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 

Mobile HTML5 websites and Hybrid Apps with AngularJS