https://github.com/florianrappl/pwa-example
A short example illustrating some essential steps for creating a progressive web app (PWA).
https://github.com/florianrappl/pwa-example
example js pwa tutorial web
Last synced: 9 months ago
JSON representation
A short example illustrating some essential steps for creating a progressive web app (PWA).
- Host: GitHub
- URL: https://github.com/florianrappl/pwa-example
- Owner: FlorianRappl
- License: mit
- Created: 2018-07-02T20:42:16.000Z (over 7 years ago)
- Default Branch: info
- Last Pushed: 2018-07-02T20:56:00.000Z (over 7 years ago)
- Last Synced: 2025-03-30T20:05:31.931Z (10 months ago)
- Topics: example, js, pwa, tutorial, web
- Homepage: https://blog.logrocket.com/building-a-progressive-web-app-pwa-no-react-no-angular-no-vue-aefdded3b5e/
- Size: 501 KB
- Stars: 29
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PWA Example
A simple example illustrating the transformation of a standard web app into a progressive web app.
## Branches
The following branches illustrate different steps:
### original
The baseline example. A simple web app fetching some data and showing it. Not working offline, not using push notifications and not installable.
### standalone
Makes the app installable by providing a stub service worker and valid manifest file. A set of sample icons is included.
### push
Installs a (pseudo) web push notification service. Indicates the installation status on the screen (bottom of the page).
### offline
Includes a service worker implementation to retrieve data from cache.
### master
The latest version. Is only used for contributions / improvements.