Reputation: 997
I'm working on a PWA where I should implement push notification.
Is there any readily available nodejs or other implementation so I no need to write all that back end code ?
Upvotes: 0
Views: 292
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