Progressive Web Apps

Abhay Jain
2 min readJan 16, 2021

PWAs should be discoverable, installable, linkable, network independent, progressive, re-engageable, responsive, and safe.

Progressive Web Apps are web apps that use emerging web browser APIs and features along with traditional progressive enhancement strategy to bring a native app-like user experience to cross-platform web applications.

Progressive Web Apps are a useful design pattern, though they aren’t a formalized standard. PWA can be thought of as similar to AJAX or other similar patterns that encompass a set of application attributes, including the use of specific web technologies and techniques.

In order to call a Web App a PWA, technically speaking it should have the following features: Secure contexts (HTTPS), Service Workers, and a manifest file.

1. Secure contexts (HTTPS)

The web application must be served over a secure network. Being a secure site is not only a best practice, but it also establishes your web application as a trusted site especially if users need to make secure transactions. Most of the features related to a PWA such as geolocation and even service workers are available only once the app has been loaded using HTTPS.

2. Service workers

A service worker is a script that allows intercepting and control of how a web browser handles its network requests and asset caching. With service workers, web developers can create reliably fast web pages and offline experiences.

3. Manifest file

A JSON file that controls how your app appears to the user and ensures that progressive web apps are discoverable. It describes the name of the app, the start URL, icons, and all of the other details necessary to transform the website into an app-like format.

--

--

Abhay Jain

Developer with 3 yrs of industrial experience in developing scalable web applications.