reyadussalahin / learn-pwa

The most concise guide to Progressive Web Applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Progressive Web Applications

The future way of building Apps

License Stars Forks PRs Issues


The most conside guide to learn progressive web applications


Connect with me in linkedin or say hi to Twitter.

History of Apps before PWA

Advantages of native apps

  1. Fast
  2. Native feels(great rendering)
  3. Works offline
  4. Ease of use(In smart phones just a single click)
  5. No need to track url
  6. Push Notifications

Disadvantages of native apps

  1. Need to built platform specific app(great cost)
  2. Need to maintain multiple apps(for each platform) and implement each feature in each app
  3. No SEO
  4. Huge download size and also takes a lot of disk space
  5. Slow development(because multiple apps needs to be developed to reach users of every platform)
  6. Complex installation and upgrading system

Advantages of web apps

  1. Platform Independent(Works in Browser), so just a single app needs to be maintained
  2. Less cost
  3. Fast development
  4. Less Size
  5. SEO
  6. Easy to upgrade

Disadvantages of web apps

  1. Browser dependent
  2. Needs url to access
  3. Missing native feels
  4. Not fast/responsive enough
  5. Missing push notifications
  6. Does not work offline
  7. No as easy as using native apps

Birth of PWA

Why PWA?

If you notice carefully, you'd see that the advantages native apps provide, are actually the things web apps can't provide, and the advantages the web apps provide, the native apps are at a disadvantage on those things.

PWA is here to solve the problems of both native and web apps by taking best of the both worlds.

What is a PWA?

But, what is a PWA?

Let's discuss what advantages a web app should provide to become a PWA:

  1. It must progressively give native feels
  2. It should be platform independent i.e. a single app should run every platform
  3. It should provide an easy installation and upgrading system like web apps but can also be open like native apps by clicking icons
  4. It should support push notifications like native apps
  5. It should provide caching to work offline
  6. The upgrade of app should be smoother than the native apps(like web apps)
  7. It should take advantage of SEO

So, if any web app that could provide the above advantages, should be called Progressive Web App.

How PWA is implemented

As you can imagine PWA's are web apps, but a special type of web apps. Below is given the constructs, which a web app uses or takes advantage of to become a PWA:

  1. PWA takes advantage of browser's runtime(that's why it can run anywhere)
  2. PWA takes advantage of a browser construct called Service Worker
    • Service worker runs in a separate thread than the browser's main thread
    • Service worker can run in background(i.e. even when the browser is closed)
    • Service worker acts as a proxy between the browser and the network
    • Service worker uses cache to save assets locally or even dynamic pages for offline use(note: it's not the same as browser cache)
    • Service worker can subscribe for push notifications
  3. PWA needs a manifest file to instruct the platform how the app is going to be installed in the system

Note: PWA is also a web app, so it has all the advantages of a web app

Disadvantages of PWA

Just like everything, PWA has also downsides:

  1. Not as fast and responsive as native apps(though reasonably fast enough)
  2. Service workers are not available in all browsers over all versions.
  3. Needs to maintain a service worker file which acts as an proxy between browser and network, so not as straight forward and easy as a normal web app.
  4. Service worker makes it a bit complex to get the head around how the app development is going to be.
  5. Service worker updating could be a bit of a problem(ref: https://www.youtube.com/watch?v=JJSloXLTyNg)
  6. A bad service worker replacement in clients browser is not as easy as it seems:
  7. Service worker is a new thing(only a couple of years old), so it may be a bit behind in features when comparing with native advantages. But check this for confirmation: https://jakearchibald.github.io/isserviceworkerready/

A few more concerns:

  1. The first visit to a page will be slow since it must download the files and data to the cache
  2. Add to home screen functionality is seldom used(not as much as we expect it to be)
  3. Support between browsers varies widely depending on what technology you’re using. For example, service workers have good support but web app manifest does not, so it can be tricky to identify what you can use safely out of the box and what requires a polyfill from the start

A Simple Demo

LICENSE

Contribution

About

The most concise guide to Progressive Web Applications

License:MIT License