An open API service indexing awesome lists of open source software.

https://github.com/ccnokes/web-push-server-demo

A node.js web server that provides a minimal server implementation to get web push working. Useful for prototyping web push on the front end.
https://github.com/ccnokes/web-push-server-demo

Last synced: 11 months ago
JSON representation

A node.js web server that provides a minimal server implementation to get web push working. Useful for prototyping web push on the front end.

Awesome Lists containing this project

README

          

# web push backend demo
This is a web server that provides a minimal server implementation to get web push working. It's useful for prototyping or as a simple reference guide to know how to start implementing a backend for web push.

## Starting
```
npm install
npm start
```
Running npm install will also generate VAPID server keys that you will need to send requests.

See `register-service-worker-sample.js` to see how to set it up in the browser.