Repository: chr15m/minimal-pwa Overview Description: Minimal files and configuration for a Progressive Web App (PWA). Website: https://mccormick.cx/minimal-pwa Repository Type: Public Author: chr15m Stars: 36 Forks: 4 Watchers: 1 Purpose This repository provides the minimal necessary files to create a PWA installable on Android and iOS. It includes: A minimal manifest.json A simple service worker to trigger the install flow on Chrome A smaller single-file implementation that dynamically generates the manifest from JavaScript and can be installed without a service worker is also available in the repository (single-file-pwa.html). Key Files .gitignore Makefile README.md index.html manifest.json single-file-pwa.html sw.js (service worker) Languages Used HTML: 97.7% Makefile: 1.7% JavaScript: 0.6% Functional Highlights The repository is designed for simplicity and minimalism to serve as a base template for PWAs. The service worker and manifest are the minimum needed to enable installability and basic PWA features on major platforms. The single-file PWA version further reduces complexity by combining all logic into one file and omitting the service worker. --- This repository is ideal for developers seeking a lightweight starting point for building PWAs with essential install and offline features, emphasizing minimal configuration.