Difference between revisions of "Progressive Web App"

From MgmtWiki
Jump to: navigation, search
(Other Reference Material)
(Other Reference Material)
Line 42: Line 42:
 
* The [https://trustregistry.us/ web site Trust Registry for the US] is constructed to load as a [[Progressive Web App]].
 
* The [https://trustregistry.us/ web site Trust Registry for the US] is constructed to load as a [[Progressive Web App]].
 
* The [https://appsco.pe/ web site App Scope] attempts to list the [[Progressive Web App]]s but is always a little bit out of date.
 
* The [https://appsco.pe/ web site App Scope] attempts to list the [[Progressive Web App]]s but is always a little bit out of date.
* [https://www.actminds.com/blog/pwa/ Progressive Web Apps] on Act Minds
+
* [https://www.actminds.com/blog/pwa/ Progressive Web Apps] on Act Minds is helpful for deciding if [[Progressive Web App]]s are for you.

Revision as of 17:56, 28 May 2019

Full Title or Meme

A Progressive Web Application (PWA) runs in a browser on the user's device with the look and feel of a Native App.

Context

  • Folks all around the world are increasing dependent on their mobile phone for a wide range of functionality.
  • While all the newest Smart Phones come with multiple gigabytes of memory, most of the world still depends on less expensive phones. These phones cannot load large Native Apps nor can they store very many apps.
  • Out of scope of a PWA is any technology that needs to package executable files, whether it is a .apk, .exe, or any other that needs to be downloaded as a Native App and installed on the user’s device.

Problems

  • Most Smart Phone users have some experience with accessing Web Apps, and during this access you may have noticed that most of the time they were slow and heavy, making the experience frustrating and disheartening.
  • Any app from the store needs to be native or hybrid, which means, you must install it on your device and accept terms and conditions before you even try it. Let’s face it, it can be very frustrating, after all, having to install and uninstall several apps, or even install it for just one time usage is not something very practical. We must also consider that mobile Internet can be expensive and somehow limited, so if you need to download a 30 MB app, it will take a while and you risk running out of available connection.

Solution

One solution to these problems is the Progressive Web App ( PWA ). It is all about an app that uses resources from a modern Web Browser to present a similar experience the user would have with native/hybrid apps, but are built using HTML, CSS and JavaScript rather than with the native code for the platform from Apple, Android or Microsoft. (Note that TypeScript may also be used for a Web App, but that just compiles into JavaScript.)

Many web developers already have been creating Web Sites that are well adapted to mobile devices and could already be considered to be constructed to look like Web Apps. The extra work to enable these apps to be registered to display on the user's home screen (i.e. to become a PWA) is not large.

The Progressive Web App is a Web App that has an Web App Manifest, to enable registration with the mobile device, and typically addresses these 10 key concepts, based on Google’s Patterns.[1]

  1. Safe – It must use the HTTPS protocol to protect the privacy and integrity of the exchanged data.
  2. Progressive – It must work for all the users, regardless of which browser is used, because the app should be built using progressive enhancement patterns.
  3. Responsible – It must fit on any screen size: desktop, mobile phones, tablets, etc.
  4. Internet-free – With Service Worker (background task) technology it is possible to access the application on bad quality connections or even offline.
  5. App-like – User should have the same experience as any other native/hybrid application; this is because of the app shell model.
  6. Always up to date – User should not download any updates. Since it is a web site, all the updates must happen in the background.
  7. Detectable – It must be identified as “application”. Thanks to W3C manifest and a proper Service Worker registry it is possible to allow the search engines to find them.
  8. Re-engageble – It should increase the engagement by push notification to bring the user back.
  9. Installable – It must allow the user to create a shortcut on his initial desktop with a personalized icon, without any resources from the store.
  10. Shareable – It must be easy to be shared with only its URL to anybody and it must keep being easy to install.

Following those patterns, you will ensure that your application works very well, not only when accessed by a browser, but also by a shortcut icon.

PWA does not need any installation, you just need to access the web site and accept the "add to home screen" when indicated. It is not necessary to understand about the development and management of applications as you would for iOS, Android and Windows.

This is enabled by a piece of JavaScript called Service Workers, which is installed by the browser, but runs in a separate thread. And for multiprocessor phones possibly on its own processor. Even with a site running offline, you will be receiving push notifications, geolocation, background updates, interceptions and images cache, JavaScript, CSS files, XHR, etc. This script works by intercepting requests, caching returned content and even handling events. The interaction with the user is sped up even while online because of the local caching.

Some Down Sides to PWA

  • Pay attention to browser support at the time you expect to deploy the web app. In early 2019, iOS did not support all features; in that case, you must find another solution, like the appCache missing, which should be used for offline access. You may verify the iOS ‘s full support for Service Workers here.
  • The Service Worker does not have access to DOM, it runs on a different scope from the page, it is promise (task) based, and it must run with HTTPS protocol.
  • The PWA offers considerable speed-up for parts of the Web Site including the home page. This can make display of some content out-of-date and this needs to be understood and perhaps mitigated by the Web App programmer.

References

  1. Google, Introduction to Progressive Web App Architectures https://developers.google.com/web/ilt/pwa/introduction-to-progressive-web-app-architectures

Other Reference Material