Capacitor has first-class support for Progressive Web Apps, making it easy to build an app that runs natively on iOS and Android, but also on the web as a mobile web app or “Progressive Web App.”
Put simply, a Progressive Web App (PWA) is a web app that uses modern web capabilities to deliver an app-like experience to users. These apps are deployed to traditional web servers, are accessible through URLs, and can be indexed by search engines.
A Progressive Web App is, for all practical purposes, just another term for a website that has been optimized for mobile performance and that utilizes newly available Web APIs to deliver features that are similar to a traditional native app, such as push notifications and offline storage.
Capacitor has first-class support for Progressive Web Apps and native apps. That means that Capacitor’s plugin bridge supports running in either a native context or in the web, with many core plugins available in both contexts with the exact same API and calling conventions.
This means you use
@capacitor/core
as a dependency for both your native app
and your Progressive Web App, and Capacitor seamlessly calls web code when required and native code when available.
Additionally, Capacitor offers a number of utilities for querying the current platform to provide customized experiences when running natively or on the web.
Adding PWA support to any existing frontend project is easy. Just add an App Manifest file and configure a service worker:
First, you’ll need an
App Manifest file (manifest.json)
that sits alongside your
index.html
file and provides metadata about your app, such as its name, theme colors, and icons. This information will be used
when your app is installed on the home screen, for example.
Next, in order to send push notifications and store data offline, a Service Worker will enable your web app to proxy network requests and perform background tasks needed to process and sync data.
Service Workers are powerful, but complicated. Generally, writing them from scratch is not recommended. Instead, take a look at tools like Workbox that provide common Service Worker recipes that you can easily incorporate into your app.
Read more about using Service Workers, including how to register them, on the Using Service Workers page on MDN.
Progressive Web Apps are judged by several performance standards, including Time to Interactive and First Meaningful Paint.
Follow the Progressive Web App Checklist before going live, and use Lighthouse to audit and test your app.
If you’re struggling to meet Progressive Web App performance standards with your existing frontend stack, take a look at Ionic Framework version 4 or greater as an option for getting fast PWA support with nearly zero configuration. Ionic 4.x or above is a web component library that works in several popular frontend frameworks, not just Angular.
One of the key features of Capacitor is the ability to build one app that runs both natively (in the app stores), and on the web. Capacitor does this by providing a layer between the underlying platform and the APIs/Plugins you’d like to use.
If your app makes native plugin calls that don’t have a web substitute, such as
SplashScreen.show()
, the app will allow those calls without crashing. Calls that return a promise will return a rejected promise, which you should be handling in your app anyways.
Additionally, Capacitor’s JavaScript API has a number of utilities that make it possible to programmatically check whether certain APIs are available.
For example, if your app would normally rely on the Camera app being used to take a photo, you could check if the Camera is available, and if not, ask the user to upload a file instead:
import { Capacitor } from '@capacitor/core';
const isAvailable = Capacitor.isPluginAvailable('Camera');
if (!isAvailable) {
// Have the user upload a file instead
} else {
// Otherwise, make the call:
Camera.getPhoto();
}