magicbell-io / webpush-ios-template

Web push notifications demo and starter template with support for iOS Safari PWA notifications.

Home Page:https://webpushtest.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About this project

Apple released beta support for Web Push notifications on iOS in February 2023, and made it official with the release of iOS 16.5 in May 2023.

This project, hosted at https://webpushtest.com, showcases these new capabilities. In addition to iOS, it can also send Web Push notifications on desktop and Android (although this is somewhat old news).

It is targeted at the end user, for whom installing a PWA and receiving a Web Push notification will likely be a new experience. As such, we have tried to include instructional information and device-specific error messages where relevant. Take a look at this Youtube short

Demo of WebPushTest.com on Youtube

You can use the code for providing push notification support in your web/PWA apps, but you will need an API key from MagicBell. We offer a generous free tier so you can get started quickly. Apart from web-push, we offer a real-time in-app notification inbox you can add to your app in minutes.

Relevant links:

Running locally

First, install dependencies:

npm install

Then, assuming you have a MagicBell account and have created a new project, obtain the NEXT_PUBLIC_MAGICBELL_API_KEY and MAGICBELL_API_SECRET from the MagicBell dashboard and set them as environment variables in a .env file at the root of this project:

NEXT_PUBLIC_MAGICBELL_API_KEY=...
MAGICBELL_API_SECRET=...

Then, start the development server:

npm run dev

Open http://localhost:3000 with your browser to see the result.

To observe iOS push notifications from your local development environment, you will need to expose your local server to the internet. We recommend using ngrok:

ngrok http 3000

After visiting the resulting public url on your device, be sure to also install the app as a PWA, using the "Add to Home Screen" option in the Safari share menu.

Important files

These will be the most relevant files to look at if you want to understand how this project works:

About

Web push notifications demo and starter template with support for iOS Safari PWA notifications.

https://webpushtest.com


Languages

Language:TypeScript 90.8%Language:CSS 6.3%Language:JavaScript 2.0%Language:HTML 0.9%