ewert / neos-webpush
This package provides a backend module to manage and send Web Push Notifications
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 0
Open Issues: 0
Language:HTML
Type:neos-package
Requires
- minishlink/web-push: ^5.2
- neos/flow: *
- neos/neos: ~3.0 || ~4.0 || dev-master
This package is auto-updated.
Last update: 2025-03-29 00:42:43 UTC
README
This package provides a backend module to manage and send Web Push Notifications.
Installation
-
Run the following command in your site package
composer require ewert/neos-webpush --no-update
-
Then run
composer update
in your projects root folder. -
Run the following command to migrate your database
./flow doctrine:migrate
-
Finally you can add the
WebPushAdministrator
role to the users who need access to the new backend module.
Configuration
Browsers need to verify your identity. A standard called VAPID can authenticate you for all browsers.
You'll need to create and provide a public and private key for your server.
These keys must be safely stored and should not change.
When you open up the Backend Module for the first time, an example configuration like the following with autogenerated keys will be created for you.
Ewert: WebPush: vapid: publicKey: '' privateKey: ''
Asking the users for Permission
To be able to send some messages to your users, you have to first ask them for permission.
To do that, you just have to call the following JavaScript function:
window.EwertWebPush.requestPermission();