Sagar
Sagar

Reputation: 997

Is there any implementation of push notification backed that I can readily use

I'm working on a PWA where I should implement push notification.

  1. I want all subscribed users ( end points ) should be added to a list in backed
  2. Where a notifications can be pushed to all the subscribers ( end points )
  3. When user unsubscribed that end point entry should be removed

Is there any readily available nodejs or other implementation so I no need to write all that back end code ?

Upvotes: 0

Views: 292

Answers (1)

rsp
rsp

Reputation: 111258

There are few Node modules that you can use to greatly simplify your job if you're going to implement it yourself:

There is also this project:

Push Server is a cross-plateform push server based on node-apn and node-gcm. Push Server currently supports iOS (APN) and android (GCM) platforms. It uses mongoDB to store the push tokens. Note that this server is not meant to be used as a front facing server as there's no particular security implemented.

Upvotes: 1

Related Questions