Push notifications on web applications

2 · Adrian Ancona Novelo · July 22, 2020, 11:24 a.m.
In this post I’m going to explore how to use the Notification API and the Push API to send push notifications to users. Push notifications are built on top or service workers, so taking a look at using service workers for caching might be useful. I have created a minimal web-push-example that can be found in github. Notification API The notification API allows us to show notifications users. In a phone they will look like a native app notification, while in the browser they will look like a pop...