This is the first of articles where I want to describe how to migrate/extend your web app to being a Progressive Web App
Main points of a Progressive Web App are:
- it’s secure (uses HTTPS)
- app install banners give users an easy way to add the app to their home screen/launchpad
- service worker makes the app load nearly instantly and work offline
- application is responsive (phones, tablets and laptops)
- ability to send users web push notifications
- smooth and great user experience
Let’s start from the first item and add security (HTTPS).
...