Jay Simonsdesignly.hashnode.dev·Oct 14, 2024Push Notifications in Next.js with Web-Push: A Provider-Free SolutionPush notifications are an important way to stay engaged with your users. SMS messages are too personal (and restrictive), and email is often too slow and prone to being filtered out. When done properly (and not abused), push notifications offer value...Next.js
Pradip Chaudharyblog.thepradipvc.com·Jul 7, 2024What is Web Push Protocol?Web Push Protocol is a protocol that is to be followed while sending Push Message requests by anyone who is implementing Web Push Notifications on their website. We don't need to handle every aspect of WPP requests as in we don't need to create raw n...Web Push Notificationsweb push protocol
Pradip Chaudharyblog.thepradipvc.com·May 19, 2024What are Web Push Notifications? And How do they work?Introduction In this article, I will answer some prominent questions on web push notifications. Web Push Notifications (aka Browser Push Notifications) is a way to send some message to users even when they are not actively using the website. This pro...11 likes·42 readsWeb Push NotificationsWeb Development
Sajib Hossainsajibhsn.hashnode.dev·Jan 28, 2024How to add Web Push notifications using React and Node JSWeb push notifications are the easiest way to send notifications to users completely free. In this article, we will learn how to implement web push notifications using React.js and Node.js. Frontend project setup Setup React JS using Vite js. Run th...179 readsJavaScript
Chris Dobsonchrisdobby.dev·Jul 22, 2023Keeping supporters up to date using AWS Events and Web Push (part 4)This is the final of a series of articles showing how I built a solution to keep supporters of a sports club up to date using an event-driven architecture in AWS and Web Push notifications. Previous articles: Part 1 Part 2 Part 3 Goals Keep sup...68 readsKeeping supporters up to date using AWS events and Web PushAWS
Chris Dobsonchrisdobby.dev·Jul 1, 2023Keeping supporters up to date using AWS Events and Web Push (part 1)When I was asked to create a new website for the cricket club I played for I figured it would be something I could use to experiment with. Given that my UI skills leave a lot to be desired I didn’t want to do much on the front end so I decided to inc...121 readsKeeping supporters up to date using AWS events and Web PushAWS
Sheng Tai Chentp6gw94.hashnode.dev·May 21, 2023Use JavaScript running web app in the background有時有需求在背景時仍然要同步資料,當 User 切回頁面時,仍然可以看到最及時的資料。或是發送通知給 User、持續上傳檔案等需求,都需要使用到 javscript 在 Web APP 背景執行的能力。 使瀏覽在背景下繼續執行的方式有許多種,不過以支援度來說最常使用的 Service worker ,並透過 Page Visibility API 確認瀏覽器是否是在背景模式。 Service worker 根據不同的裝置(Mobile, Desktop)與瀏覽器(Chrome, Firefox,...JavaScript