SlideShare a Scribd company logo
1 of 87
Download to read offline
Mobile .js
From PWA to Native
Martin Sotirov
Freelance Web Developer & Consultant
https://martinsotirov.com
@unclemartycodes
2
3
Heidelcademy
IT-Workshops Seminare Schulungen••
WORDSPACE
leidenschaftlich digital
Agenda
• The Dream of Cross Platform Mobile Apps
• Progressive Web Apps
• Hybrid Apps
• „Native“ Apps
4
The Dream of Cross Platform
Mobile Apps
Kickstarting the Mobile Revolution in 2007
6
Kickstarting the Mobile Revolution in 2007
The full Safari engine is inside of iPhone. And so, you can
write amazing Web 2.0 and Ajax apps that look exactly
and behave exactly like apps on the iPhone. And these
apps can integrate perfectly with iPhone services. They
can make a call, they can send an email, they can look
up a location on Google Maps.
– Steve Jobs, 2007
7
”
Jobs loved PWAs!
• There was no App Store
• Only web apps were allowed on the iPhone
• No SDK needed
8
Write once, run anywhere
• 2008 – App Store arrives
• 2008 – Android v1 released
• 2009 – first cross-platform solutions for mobile
9
The dream is reborn
10
Radically different approaches
• Web apps packaged in native wrappers
• Cordova, Phonegap, Ionic
• Native components (Cocoa Touch & Android SDK)
• Appcelerator Titanium, Xamarin, ReactNative, NativeScript
• Custom rendering that attempts to look native
• Qt, Flutter
11
Where does Vue.js fit in?
12
Progressive Web Apps
What‘s a PWA?
• PWA term introduced by Google in 2015
• Not to be confused with progressive enhancement
It isn’t a new framework or technology.
It is a set of best practices to make a web application
function similar to a mobile application.
14
Twitter is a good example
15
Characteristics of a Progressive Web App
• Progressively enhanced
• Discoverable and linkable (SEO)
• Responsive UI that looks app-like
• Available offline
• Installable
• Safe (https)
16
More specifically
• Google‘s checklist:
https://developers.google.com/web/progressive-web-apps/checklist
• Required:
• manifest.json
• service-worker.js
• icon
• served over https
17
Web App Manifest
18
{
"name": "Foo Bar",
"short_name": "Foo Bar",
"icons": [
{
"src": "./img/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./img/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "./index.html",
"display": "standalone",
"background_color": "#000000",
"theme_color": "#4DBA87"
}
manifest.json
Service Worker demystified
19
• simple js file that gets executed in the background
• intercepts requests and caches data for offline use
• can receive push notifications
• a kind of „proxy“ for your app
Easy offline mode
20
self.addEventListener('fetch', event => {
const { request } = event
const url = new URL(request.url)
if (url.origin === location.origin) {
event.respondWith(cacheData(request))
} else {
event.respondWith(networkFirst(request))
}
})
async function cacheData(request) {
const cachedResponse = await caches.match(request);
return cachedResponse || fetch(request);
}
service-worker.js
Vue CLI does most of the work
21
• Can generate manifest.json and serviceworker.js
automatically
• Provides a nice way to hook into service worker events
• Uses Google Workbox via webpack under the hood
Vue CLI does most of the work
22
$ vue create hello-world
$ vue add pwa
React to events of your service worker
23
import { register } from 'register-service-worker'
if (process.env.NODE_ENV === 'production') {
register(`${process.env.BASE_URL}service-worker.js`, {
// ...
registered () {
console.log('Service worker has been registered.')
},
cached () {
console.log('Content has been cached for offline use.')
},
updated () {
console.log('New content is available; please refresh.')
},
offline () {
console.log('No internet connection found. App is running in offline mode.')
},
// ...
})
}
src/registerServiceWorker.js
Vue CLI does most of the work
24
module.exports = {
pwa: {
name: 'Hello World',
themeColor: '#4DBA87',
msTileColor: '#000000',
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: 'black',
workboxPluginMode: 'GenerateSW’,
workboxOptions: {
// plugin options
}
}
}
vue.config.js
Write your own service worker!
25
module.exports = {
pwa: {
name: 'Hello World',
themeColor: '#4DBA87',
msTileColor: '#000000',
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: 'black',
workboxPluginMode: 'InjectManifest',
workboxOptions: {
// path to custom service worker
swSrc: 'src/sw.js',
}
}
}
vue.config.js
Debugging your PWA
26
• Google Lighthouse https://developers.google.com/web/tools/lighthouse/
• Use DevTools to inspect your:
• Service Worker
• Manifest
• Cache
27
28
29
PWA support
30
• All major browsers support service workers !
• Some key features still missing from iOS 13
• Push API, Installation API etc.
Please no PWA in the App Store
31
“Apps that provide core features and functionality
dynamically with web technology like HTML5 are best
delivered to everyone in Safari, rather than through
the curated App Store.
…
All new apps must follow this guideline and we urge
you to update your existing apps as soon as possible.”
— Apple on 06.09.2019
”
When to Use a PWA
"Use when:
• Using Vue.js
• You plan to deliver your app mainly via a
browser
• You don‘t need many specific platform or
device features
• You can educate your users about installing
the app
#Do not use when:
• Inclusion in App Stores is important
• Native look and feel is important
• Performance is critical
32
Usefull Links
33
• https://pwa.rocks
• https://serviceworke.rs
• https://www.pwastats.com
• https://app-manifest.firebaseapp.com
• https://developers.google.com/web/progressive-web-
apps/checklist
Hybrid Apps
What‘s a Hybrid App
35
Ionic vs Cordova
36
• Originally a collection of native-looking Angular
components on top of Cordova
• Completely rewritten as framework agnostic web
components for v4
• No hard dependency on Cordova in v4
Capacitor vs Cordova
37
• Capacitor is the new native bridge that you can use in
place of Cordova
• Backwards compatible with most Cordova/Phonegap
plugins
• Different approach to configuration:
XCode and AndroidStudio projects get
manually configured and checked in git
Known incompatible Cordova plugins $
• cordova-plugin-add-swift-support
• cordova-plugin-admobpro
• cordova-plugin-background-fetch
• cordova-plugin-braintree
• cordova-plugin-compat
• cordova-plugin-console
• cordova-plugin-crosswalk-webview
• cordova-plugin-fcm
• cordova-plugin-firebase
• cordova-plugin-ionic-keyboard
• cordova-plugin-ionic-webview
• cordova-plugin-music-controls
• cordova-plugin-qrscanner
• cordova-plugin-splashscreen
• cordova-plugin-statusbar
• cordova-plugin-wkwebview-engine
38
Built-in device APIs %
• Accessibility
• Background Tasks
• In-App Browser
• Camera
• Clipboard
• Console
• Device Information
• Filesystem
• Geolocation
• Haptics
• Keyboard
• Modals
• Motion
• Network
• Local Notifications
• Push Notifications
• Sharing
• Splash Screen
• Status Bar
• Storage
39
Add Capacitor to an existing project
40
$ npm install --save @capacitor/core @capacitor/cli
$ npx cap init
Add Capacitor to an existing project
41
{
"appId": "com.martinsotirov.foobar",
"appName": "FooBar",
"bundledWebRuntime": false,
"npmClient": "npm",
"webDir": "www"
}
capacitor.config.json
$ npm run build
$ npx cap add ios
$ npx cap open ios
Set up your XCode project
42
... and press Run
43
Hot Module Replacement
44
{
"appId": "com.martinsotirov.foobar",
"appName": "FooBar",
"bundledWebRuntime": false,
"npmClient": "npm",
"webDir": "dist",
"server": {
"url": "http://192.168.178.20:8080"
}
}
capacitor.config.json
$ npm run serve
$ npx cap copy
How about some camera action?
45
src/App.vue
src/router.js
46
src/views/Camera.vue
47
The web version degrades gracefully
What about PWA / desktop?
48
src/App.vue
Add fallback solutions for web
49
src/App.vue
$ npm install --save @ionic/pwa-elements
Add fallback solutions for web
50
Firefox can take selfies too!
Theming a Hybrid Vue app
51
Use any framework or roll your own styles
Theming a Hybrid Vue app
52
You can also use Ionic v4 components but...
When to Use Hybrid Vue (via Capacitor)
"Use when:
• You plan to release on official app
stores
• Want to reuse the code for a PWA
version
• You want to leverage the many
existing Vue and vanilla JS libraries
#Do not use when:
• You want to be able to update your
app in the background
• True native look and feel is important
• Performance is critical
53
„Native“ Apps
54
What is NativeScript?
• Cross platform mobile framework similar to ReactNative
• Released before ReactNative in 2014 by Telerik (now Progress)
• Renders native iOS and Android components, business logic in JS
• Injects all iOS and Android APIs in the JavaScript VM
55
Extending NativeScript
• Use any existing iOS & Android API directly via JS / TypeScript
56
nativescript-camera/src/camera.ios.ts
What is NativeScript-Vue? + =
• Vue integration developed by community developer Igor Randjelovic
as a hobby project in 2017
• Official NativeScript „flavor“ since v5.2 (February 2019)
57
Dip your toes in the Playground (play.nativescript.org)
58
Dip your toes in the Playground (play.nativescript.org)
59
Dip your toes in the Playground (play.nativescript.org)
60
NativeScript Components
61
HTML NativeScript
<html> <Frame>
<body> <Page>
<div> <StackLayout> <GridLayout> ...
<h1> <h2> ... <Label class="h1">
<p> <Label class="body">
<img> <Image>
<header> <ActionBar>
<button> <Button>
<ul> <ListView>
<input type="text"> <TextField>
<input type="checkbox"> <Switch>
Native CSS?
"Supported:
• Anything that relates to color and font
• Padding and margin
• Animations
• CSS variables
• Custom NativeScript rules
• Platform specific rules
#Not supported:
• Position and layouting, Flexbox
• Pseudo selectors (only :highlighted)
62
Common Gotchas &
• The Vue integration is a community project with a separate website, docs and
versioning
• Not all NativeScript UI components and plugins have Vue support and/or documentation
• No VueRouter yet
• Layout via components instead of CSS (<StackLayout>, <GridLayout>...)
• 2 different package.json files
63
• Install the NativeScript CLI
• Create a fresh Vue based project
Let‘s make FooBar native
64
$ tns create foobar_native --vue
$ npm install -g nativescript
65
Let‘s see what it contains
66
app/app.js
Let‘s see what it contains
67
app/components/Home.vue
Let‘s see what it contains
68
app/components/Home.vue
Make it more Vuetastic
69
app/components/Home.vue
Make it more Vuetastic
70
app/components/Home.vue
... and a simple About page
71
app/components/About.vue
The default Vue app, native
72
How about some native selfies?
74
• Install the NativeScript camera plugin
• or via the NativeScript CLI
$ npm install --save nativescript-camera
$ tns plugin add nativescript-camera
How about some native selfies?
75
app/components/Camera.vue
How about some native selfies?
76
app/components/Camera.vue
How about some native selfies?
77
Different Ways to Navigate
• Navigation affects the whole layout structure
• Tabs, Hamburger & Drawer etc.
• Experimental Vue Navigator similar to VueRouter
• https://github.com/nativescript-vue/nativescript-vue-navigator
79
Tab Navigation
80
app/App.vue
Tab Navigation
81
app/App.vue
Tab Navigation
82
app/app.js
app/components/About.vue
Tab Navigation
83
One More Thing
• You can use Vue DevTools
85
$ npm install --save @vue/devtools nativescript-toasty nativescript-socketio nativescript-vue-devtools
app/app.js
$ npx vue-devtools
When to Use NativeScript
"Use when:
• You plan to release on official app stores
• Performance and native feel is important
• You want to use platform specific APIs
without writing native code
#Do not use when:
• You want to be able to update your app in
the background
• You want to reuse all of your web code
• You want to leverage many existing
libraries and tools
86
Usefull Links
87
• https://docs.nativescript.org/
• https://nativescript-vue.org
• https://nsvue-workshop.netlify.com/
Key Takeaways
89
No App Store needed App Store needed
Limited stack reuse
Use your existing stack
(HTML, CSS, JS)
Use your existing stack
(HTML, CSS, JS)
Leverage frontend
frameworks (Vuetify)
Limited device features
Full access to device
features
Full native access to
device features
App Store needed
Limited performanceLimited performance High performance
Leverage frontend
frameworks (Vuetify)
Build everything
yourself
Non native UX and feelNon native UX and feel
Almost native UX
and feel
Questions

More Related Content

What's hot

Node.Js: Basics Concepts and Introduction
Node.Js: Basics Concepts and Introduction Node.Js: Basics Concepts and Introduction
Node.Js: Basics Concepts and Introduction Kanika Gera
 
React JS & Functional Programming Principles
React JS & Functional Programming PrinciplesReact JS & Functional Programming Principles
React JS & Functional Programming PrinciplesAndrii Lundiak
 
Nodejs functions & modules
Nodejs functions & modulesNodejs functions & modules
Nodejs functions & modulesmonikadeshmane
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDBRavi Teja
 
Firebase - A real-time server
Firebase - A real-time serverFirebase - A real-time server
Firebase - A real-time serverAneeq Anwar
 
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...Edureka!
 
The Basics of MongoDB
The Basics of MongoDBThe Basics of MongoDB
The Basics of MongoDBvaluebound
 
Difference between vbscript and javascript
Difference between vbscript and javascriptDifference between vbscript and javascript
Difference between vbscript and javascriptUmar Ali
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptJavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptLaurence Svekis ✔
 
JavaScript Fetch API
JavaScript Fetch APIJavaScript Fetch API
JavaScript Fetch APIXcat Liu
 
Advanced Javascript
Advanced JavascriptAdvanced Javascript
Advanced JavascriptAdieu
 
MongoDB Schema Design
MongoDB Schema DesignMongoDB Schema Design
MongoDB Schema DesignMongoDB
 

What's hot (20)

Node.Js: Basics Concepts and Introduction
Node.Js: Basics Concepts and Introduction Node.Js: Basics Concepts and Introduction
Node.Js: Basics Concepts and Introduction
 
React JS & Functional Programming Principles
React JS & Functional Programming PrinciplesReact JS & Functional Programming Principles
React JS & Functional Programming Principles
 
Nodejs functions & modules
Nodejs functions & modulesNodejs functions & modules
Nodejs functions & modules
 
MYSQL - PHP Database Connectivity
MYSQL - PHP Database ConnectivityMYSQL - PHP Database Connectivity
MYSQL - PHP Database Connectivity
 
ASP.NET Core
ASP.NET CoreASP.NET Core
ASP.NET Core
 
Express js
Express jsExpress js
Express js
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
Firebase - A real-time server
Firebase - A real-time serverFirebase - A real-time server
Firebase - A real-time server
 
Node js
Node jsNode js
Node js
 
JavaScript
JavaScriptJavaScript
JavaScript
 
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js T...
 
The Basics of MongoDB
The Basics of MongoDBThe Basics of MongoDB
The Basics of MongoDB
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
 
Difference between vbscript and javascript
Difference between vbscript and javascriptDifference between vbscript and javascript
Difference between vbscript and javascript
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptJavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScript
 
JavaScript Fetch API
JavaScript Fetch APIJavaScript Fetch API
JavaScript Fetch API
 
Advanced Javascript
Advanced JavascriptAdvanced Javascript
Advanced Javascript
 
MongoDB Schema Design
MongoDB Schema DesignMongoDB Schema Design
MongoDB Schema Design
 
Introduction Node.js
Introduction Node.jsIntroduction Node.js
Introduction Node.js
 
Android Threading
Android ThreadingAndroid Threading
Android Threading
 

Similar to Mobile Vue.js – From PWA to Native

Ionic Framework - get up and running to build hybrid mobile apps
Ionic Framework - get up and running to build hybrid mobile appsIonic Framework - get up and running to build hybrid mobile apps
Ionic Framework - get up and running to build hybrid mobile appsAndreas Sahle
 
Exploring pwa for shopware
Exploring pwa for shopwareExploring pwa for shopware
Exploring pwa for shopwareSander Mangel
 
Hybrid Mobile Development with Apache Cordova and
Hybrid Mobile Development with Apache Cordova and Hybrid Mobile Development with Apache Cordova and
Hybrid Mobile Development with Apache Cordova and Ryan Cuprak
 
NCDevCon 2017 - Cross Platform Mobile Apps
NCDevCon 2017 - Cross Platform Mobile AppsNCDevCon 2017 - Cross Platform Mobile Apps
NCDevCon 2017 - Cross Platform Mobile AppsJohn M. Wargo
 
Cordova: Making Native Mobile Apps With Your Web Skills
Cordova: Making Native Mobile Apps With Your Web SkillsCordova: Making Native Mobile Apps With Your Web Skills
Cordova: Making Native Mobile Apps With Your Web SkillsClay Ewing
 
Cross-platform Mobile Development on Open Source
Cross-platform Mobile Development on Open SourceCross-platform Mobile Development on Open Source
Cross-platform Mobile Development on Open SourceAll Things Open
 
[2015/2016] Apache Cordova
[2015/2016] Apache Cordova[2015/2016] Apache Cordova
[2015/2016] Apache CordovaIvano Malavolta
 
Hybrid Mobile Development with Apache Cordova and Java EE 7 (JavaOne 2014)
Hybrid Mobile Development with Apache Cordova and Java EE 7 (JavaOne 2014)Hybrid Mobile Development with Apache Cordova and Java EE 7 (JavaOne 2014)
Hybrid Mobile Development with Apache Cordova and Java EE 7 (JavaOne 2014)Ryan Cuprak
 
Cordova Tutorial
Cordova TutorialCordova Tutorial
Cordova TutorialJacky Chen
 
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There TodayHTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There Todaydavyjones
 
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 & PhoneGapNick Landry
 
Android
AndroidAndroid
Androidscottw
 
Introduction phonegap
Introduction phonegapIntroduction phonegap
Introduction phonegapRakesh Jha
 
Advanced programing in phonegap
Advanced programing in phonegapAdvanced programing in phonegap
Advanced programing in phonegapRakesh Jha
 
Xamarin COE by Mukteswar Patnaik
Xamarin COE by Mukteswar PatnaikXamarin COE by Mukteswar Patnaik
Xamarin COE by Mukteswar PatnaikMukteswar Patnaik
 

Similar to Mobile Vue.js – From PWA to Native (20)

Ionic Framework - get up and running to build hybrid mobile apps
Ionic Framework - get up and running to build hybrid mobile appsIonic Framework - get up and running to build hybrid mobile apps
Ionic Framework - get up and running to build hybrid mobile apps
 
Apache Cordova 4.x
Apache Cordova 4.xApache Cordova 4.x
Apache Cordova 4.x
 
Exploring pwa for shopware
Exploring pwa for shopwareExploring pwa for shopware
Exploring pwa for shopware
 
Hybrid Mobile Development with Apache Cordova and
Hybrid Mobile Development with Apache Cordova and Hybrid Mobile Development with Apache Cordova and
Hybrid Mobile Development with Apache Cordova and
 
NCDevCon 2017 - Cross Platform Mobile Apps
NCDevCon 2017 - Cross Platform Mobile AppsNCDevCon 2017 - Cross Platform Mobile Apps
NCDevCon 2017 - Cross Platform Mobile Apps
 
Cordova: Making Native Mobile Apps With Your Web Skills
Cordova: Making Native Mobile Apps With Your Web SkillsCordova: Making Native Mobile Apps With Your Web Skills
Cordova: Making Native Mobile Apps With Your Web Skills
 
Cross-platform Mobile Development on Open Source
Cross-platform Mobile Development on Open SourceCross-platform Mobile Development on Open Source
Cross-platform Mobile Development on Open Source
 
[2015/2016] Apache Cordova
[2015/2016] Apache Cordova[2015/2016] Apache Cordova
[2015/2016] Apache Cordova
 
Hybrid Mobile Development with Apache Cordova and Java EE 7 (JavaOne 2014)
Hybrid Mobile Development with Apache Cordova and Java EE 7 (JavaOne 2014)Hybrid Mobile Development with Apache Cordova and Java EE 7 (JavaOne 2014)
Hybrid Mobile Development with Apache Cordova and Java EE 7 (JavaOne 2014)
 
Cordova Tutorial
Cordova TutorialCordova Tutorial
Cordova Tutorial
 
Cross-Platform Development
Cross-Platform DevelopmentCross-Platform Development
Cross-Platform Development
 
iOS App Using cordova
iOS App Using cordovaiOS App Using cordova
iOS App Using cordova
 
Cordova 101
Cordova 101Cordova 101
Cordova 101
 
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There TodayHTML5 is the Future of Mobile, PhoneGap Takes You There Today
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
 
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
 
Android
AndroidAndroid
Android
 
Apache Cordova
Apache CordovaApache Cordova
Apache Cordova
 
Introduction phonegap
Introduction phonegapIntroduction phonegap
Introduction phonegap
 
Advanced programing in phonegap
Advanced programing in phonegapAdvanced programing in phonegap
Advanced programing in phonegap
 
Xamarin COE by Mukteswar Patnaik
Xamarin COE by Mukteswar PatnaikXamarin COE by Mukteswar Patnaik
Xamarin COE by Mukteswar Patnaik
 

Recently uploaded

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 

Recently uploaded (20)

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 

Mobile Vue.js – From PWA to Native

  • 2. Martin Sotirov Freelance Web Developer & Consultant https://martinsotirov.com @unclemartycodes 2
  • 4. Agenda • The Dream of Cross Platform Mobile Apps • Progressive Web Apps • Hybrid Apps • „Native“ Apps 4
  • 5. The Dream of Cross Platform Mobile Apps
  • 6. Kickstarting the Mobile Revolution in 2007 6
  • 7. Kickstarting the Mobile Revolution in 2007 The full Safari engine is inside of iPhone. And so, you can write amazing Web 2.0 and Ajax apps that look exactly and behave exactly like apps on the iPhone. And these apps can integrate perfectly with iPhone services. They can make a call, they can send an email, they can look up a location on Google Maps. – Steve Jobs, 2007 7 ”
  • 8. Jobs loved PWAs! • There was no App Store • Only web apps were allowed on the iPhone • No SDK needed 8
  • 9. Write once, run anywhere • 2008 – App Store arrives • 2008 – Android v1 released • 2009 – first cross-platform solutions for mobile 9
  • 10. The dream is reborn 10
  • 11. Radically different approaches • Web apps packaged in native wrappers • Cordova, Phonegap, Ionic • Native components (Cocoa Touch & Android SDK) • Appcelerator Titanium, Xamarin, ReactNative, NativeScript • Custom rendering that attempts to look native • Qt, Flutter 11
  • 12. Where does Vue.js fit in? 12
  • 14. What‘s a PWA? • PWA term introduced by Google in 2015 • Not to be confused with progressive enhancement It isn’t a new framework or technology. It is a set of best practices to make a web application function similar to a mobile application. 14
  • 15. Twitter is a good example 15
  • 16. Characteristics of a Progressive Web App • Progressively enhanced • Discoverable and linkable (SEO) • Responsive UI that looks app-like • Available offline • Installable • Safe (https) 16
  • 17. More specifically • Google‘s checklist: https://developers.google.com/web/progressive-web-apps/checklist • Required: • manifest.json • service-worker.js • icon • served over https 17
  • 18. Web App Manifest 18 { "name": "Foo Bar", "short_name": "Foo Bar", "icons": [ { "src": "./img/icons/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { "src": "./img/icons/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } ], "start_url": "./index.html", "display": "standalone", "background_color": "#000000", "theme_color": "#4DBA87" } manifest.json
  • 19. Service Worker demystified 19 • simple js file that gets executed in the background • intercepts requests and caches data for offline use • can receive push notifications • a kind of „proxy“ for your app
  • 20. Easy offline mode 20 self.addEventListener('fetch', event => { const { request } = event const url = new URL(request.url) if (url.origin === location.origin) { event.respondWith(cacheData(request)) } else { event.respondWith(networkFirst(request)) } }) async function cacheData(request) { const cachedResponse = await caches.match(request); return cachedResponse || fetch(request); } service-worker.js
  • 21. Vue CLI does most of the work 21 • Can generate manifest.json and serviceworker.js automatically • Provides a nice way to hook into service worker events • Uses Google Workbox via webpack under the hood
  • 22. Vue CLI does most of the work 22 $ vue create hello-world $ vue add pwa
  • 23. React to events of your service worker 23 import { register } from 'register-service-worker' if (process.env.NODE_ENV === 'production') { register(`${process.env.BASE_URL}service-worker.js`, { // ... registered () { console.log('Service worker has been registered.') }, cached () { console.log('Content has been cached for offline use.') }, updated () { console.log('New content is available; please refresh.') }, offline () { console.log('No internet connection found. App is running in offline mode.') }, // ... }) } src/registerServiceWorker.js
  • 24. Vue CLI does most of the work 24 module.exports = { pwa: { name: 'Hello World', themeColor: '#4DBA87', msTileColor: '#000000', appleMobileWebAppCapable: 'yes', appleMobileWebAppStatusBarStyle: 'black', workboxPluginMode: 'GenerateSW’, workboxOptions: { // plugin options } } } vue.config.js
  • 25. Write your own service worker! 25 module.exports = { pwa: { name: 'Hello World', themeColor: '#4DBA87', msTileColor: '#000000', appleMobileWebAppCapable: 'yes', appleMobileWebAppStatusBarStyle: 'black', workboxPluginMode: 'InjectManifest', workboxOptions: { // path to custom service worker swSrc: 'src/sw.js', } } } vue.config.js
  • 26. Debugging your PWA 26 • Google Lighthouse https://developers.google.com/web/tools/lighthouse/ • Use DevTools to inspect your: • Service Worker • Manifest • Cache
  • 27. 27
  • 28. 28
  • 29. 29
  • 30. PWA support 30 • All major browsers support service workers ! • Some key features still missing from iOS 13 • Push API, Installation API etc.
  • 31. Please no PWA in the App Store 31 “Apps that provide core features and functionality dynamically with web technology like HTML5 are best delivered to everyone in Safari, rather than through the curated App Store. … All new apps must follow this guideline and we urge you to update your existing apps as soon as possible.” — Apple on 06.09.2019 ”
  • 32. When to Use a PWA "Use when: • Using Vue.js • You plan to deliver your app mainly via a browser • You don‘t need many specific platform or device features • You can educate your users about installing the app #Do not use when: • Inclusion in App Stores is important • Native look and feel is important • Performance is critical 32
  • 33. Usefull Links 33 • https://pwa.rocks • https://serviceworke.rs • https://www.pwastats.com • https://app-manifest.firebaseapp.com • https://developers.google.com/web/progressive-web- apps/checklist
  • 36. Ionic vs Cordova 36 • Originally a collection of native-looking Angular components on top of Cordova • Completely rewritten as framework agnostic web components for v4 • No hard dependency on Cordova in v4
  • 37. Capacitor vs Cordova 37 • Capacitor is the new native bridge that you can use in place of Cordova • Backwards compatible with most Cordova/Phonegap plugins • Different approach to configuration: XCode and AndroidStudio projects get manually configured and checked in git
  • 38. Known incompatible Cordova plugins $ • cordova-plugin-add-swift-support • cordova-plugin-admobpro • cordova-plugin-background-fetch • cordova-plugin-braintree • cordova-plugin-compat • cordova-plugin-console • cordova-plugin-crosswalk-webview • cordova-plugin-fcm • cordova-plugin-firebase • cordova-plugin-ionic-keyboard • cordova-plugin-ionic-webview • cordova-plugin-music-controls • cordova-plugin-qrscanner • cordova-plugin-splashscreen • cordova-plugin-statusbar • cordova-plugin-wkwebview-engine 38
  • 39. Built-in device APIs % • Accessibility • Background Tasks • In-App Browser • Camera • Clipboard • Console • Device Information • Filesystem • Geolocation • Haptics • Keyboard • Modals • Motion • Network • Local Notifications • Push Notifications • Sharing • Splash Screen • Status Bar • Storage 39
  • 40. Add Capacitor to an existing project 40 $ npm install --save @capacitor/core @capacitor/cli $ npx cap init
  • 41. Add Capacitor to an existing project 41 { "appId": "com.martinsotirov.foobar", "appName": "FooBar", "bundledWebRuntime": false, "npmClient": "npm", "webDir": "www" } capacitor.config.json $ npm run build $ npx cap add ios $ npx cap open ios
  • 42. Set up your XCode project 42
  • 43. ... and press Run 43
  • 44. Hot Module Replacement 44 { "appId": "com.martinsotirov.foobar", "appName": "FooBar", "bundledWebRuntime": false, "npmClient": "npm", "webDir": "dist", "server": { "url": "http://192.168.178.20:8080" } } capacitor.config.json $ npm run serve $ npx cap copy
  • 45. How about some camera action? 45 src/App.vue src/router.js
  • 47. 47
  • 48. The web version degrades gracefully What about PWA / desktop? 48 src/App.vue
  • 49. Add fallback solutions for web 49 src/App.vue $ npm install --save @ionic/pwa-elements
  • 50. Add fallback solutions for web 50 Firefox can take selfies too!
  • 51. Theming a Hybrid Vue app 51 Use any framework or roll your own styles
  • 52. Theming a Hybrid Vue app 52 You can also use Ionic v4 components but...
  • 53. When to Use Hybrid Vue (via Capacitor) "Use when: • You plan to release on official app stores • Want to reuse the code for a PWA version • You want to leverage the many existing Vue and vanilla JS libraries #Do not use when: • You want to be able to update your app in the background • True native look and feel is important • Performance is critical 53
  • 55. What is NativeScript? • Cross platform mobile framework similar to ReactNative • Released before ReactNative in 2014 by Telerik (now Progress) • Renders native iOS and Android components, business logic in JS • Injects all iOS and Android APIs in the JavaScript VM 55
  • 56. Extending NativeScript • Use any existing iOS & Android API directly via JS / TypeScript 56 nativescript-camera/src/camera.ios.ts
  • 57. What is NativeScript-Vue? + = • Vue integration developed by community developer Igor Randjelovic as a hobby project in 2017 • Official NativeScript „flavor“ since v5.2 (February 2019) 57
  • 58. Dip your toes in the Playground (play.nativescript.org) 58
  • 59. Dip your toes in the Playground (play.nativescript.org) 59
  • 60. Dip your toes in the Playground (play.nativescript.org) 60
  • 61. NativeScript Components 61 HTML NativeScript <html> <Frame> <body> <Page> <div> <StackLayout> <GridLayout> ... <h1> <h2> ... <Label class="h1"> <p> <Label class="body"> <img> <Image> <header> <ActionBar> <button> <Button> <ul> <ListView> <input type="text"> <TextField> <input type="checkbox"> <Switch>
  • 62. Native CSS? "Supported: • Anything that relates to color and font • Padding and margin • Animations • CSS variables • Custom NativeScript rules • Platform specific rules #Not supported: • Position and layouting, Flexbox • Pseudo selectors (only :highlighted) 62
  • 63. Common Gotchas & • The Vue integration is a community project with a separate website, docs and versioning • Not all NativeScript UI components and plugins have Vue support and/or documentation • No VueRouter yet • Layout via components instead of CSS (<StackLayout>, <GridLayout>...) • 2 different package.json files 63
  • 64. • Install the NativeScript CLI • Create a fresh Vue based project Let‘s make FooBar native 64 $ tns create foobar_native --vue $ npm install -g nativescript
  • 65. 65
  • 66. Let‘s see what it contains 66 app/app.js
  • 67. Let‘s see what it contains 67 app/components/Home.vue
  • 68. Let‘s see what it contains 68 app/components/Home.vue
  • 69. Make it more Vuetastic 69 app/components/Home.vue
  • 70. Make it more Vuetastic 70 app/components/Home.vue
  • 71. ... and a simple About page 71 app/components/About.vue
  • 72. The default Vue app, native 72
  • 73. How about some native selfies? 74 • Install the NativeScript camera plugin • or via the NativeScript CLI $ npm install --save nativescript-camera $ tns plugin add nativescript-camera
  • 74. How about some native selfies? 75 app/components/Camera.vue
  • 75. How about some native selfies? 76 app/components/Camera.vue
  • 76. How about some native selfies? 77
  • 77. Different Ways to Navigate • Navigation affects the whole layout structure • Tabs, Hamburger & Drawer etc. • Experimental Vue Navigator similar to VueRouter • https://github.com/nativescript-vue/nativescript-vue-navigator 79
  • 82. One More Thing • You can use Vue DevTools 85 $ npm install --save @vue/devtools nativescript-toasty nativescript-socketio nativescript-vue-devtools app/app.js $ npx vue-devtools
  • 83. When to Use NativeScript "Use when: • You plan to release on official app stores • Performance and native feel is important • You want to use platform specific APIs without writing native code #Do not use when: • You want to be able to update your app in the background • You want to reuse all of your web code • You want to leverage many existing libraries and tools 86
  • 84. Usefull Links 87 • https://docs.nativescript.org/ • https://nativescript-vue.org • https://nsvue-workshop.netlify.com/
  • 86. 89 No App Store needed App Store needed Limited stack reuse Use your existing stack (HTML, CSS, JS) Use your existing stack (HTML, CSS, JS) Leverage frontend frameworks (Vuetify) Limited device features Full access to device features Full native access to device features App Store needed Limited performanceLimited performance High performance Leverage frontend frameworks (Vuetify) Build everything yourself Non native UX and feelNon native UX and feel Almost native UX and feel