Skip to content

Commit

Permalink
chore: add links from PWA main article to subtopics
Browse files Browse the repository at this point in the history
  • Loading branch information
rschlaefli committed Jan 11, 2024
1 parent f135157 commit 13a7821
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion content/articles/2023-05-12_progressive_web_apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,17 +510,23 @@ It seems that push notifications are currently not supported on iOS ([https://ww
## Push Notifications
> A more detailed article on push notifications is available [here](2023-04-27_push_notifications.md)
- Google's explanation on how to send and receive push notifications:
[https://www.youtube.com/watch?v=N9zpRvFRmj8](https://www.youtube.com/watch?v=N9zpRvFRmj8)
- MDN's expanation of how to send and receive push notifications:[https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Re-engageable_Notifications_Push](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Re-engageable_Notifications_Push)
- Example with next-pwa and push notifications: [https://github.com/shadowwalker/next-pwa/tree/master/examples/web-push](https://github.com/shadowwalker/next-pwa/tree/master/examples/web-push)
- How to turn a Webapp into a PWA? The bare minimum you need: 1) Use HTTPS 2) Your app needs to register a service worker with a fetch event handler (e.g. to deal with caching, have the site respond with 200 when the user is offline and send push notifications) 3) a manifest file with a set of home screen icons in different sizes (attention: specifying icons in the standard way might not work on older versions of iOS. Instead, logos need to be specified in the publig index.html)
- How to turn a Webapp into a PWA? The bare minimum you need:
- 1) Use HTTPS
- 2) Your app needs to register a service worker with a fetch event handler (e.g. to deal with caching, have the site respond with 200 when the user is offline and send push notifications) 3) a manifest file with a set of home screen icons in different sizes (attention: specifying icons in the standard way might not work on older versions of iOS. Instead, logos need to be specified in the publig index.html)
## Publishing PWAs to App Stores
> A more detailed article on publishing PWA is available [here](2023-05-05_publish_pwa.md)
[https://www.youtube.com/watch?v=LELAuNihs18&t=1s](https://www.youtube.com/watch?v=LELAuNihs18&t=1s)
- A very good talk about TWAs by Google - for the ones that want to dive deeper into this topic:
Expand Down

0 comments on commit 13a7821

Please sign in to comment.