PWA. MDN intro
To make your website (index.html
) become a installable web app on mobile devices. Start by adding a Web Manifest json1 file and tells the client and a service worker javascript:
<link rel="manifest" href="/manifest.json">
The service worker javascript will have some callbacks you can use.
index.html
manifest.json
sw.js
- PWABuilder
- web.dev/add-manifest
What building blocks do we have?
github.com/polymer/pwa-helpers
(I watched / read these)