Push notification system in Nodejs with Android and iOS

I want to create a push notification system in nodejs, which will be suitable for both iOS and Android. I've been searching, and at the moment I am thinking about this one:

http://devcenter.kinvey.com/nodejs/guides/push

Can anyone, who has been working on something like this, tell me what is the best way to implement that?

Upvotes: 3

Views: 3487

Answers (2)

rattray
rattray

Reputation: 6089

Another commercial option is Twilio: https://www.twilio.com/docs/notify/send-notifications

Upvotes: 0

Wael Ben Taleb
Wael Ben Taleb

Reputation: 109

I think the best way is to use Firebase Cloud Message (FCM), you can send notifications to your Android and iOS devices over an fcm_token provided by Firebase SDK. It's Google solution and simple to use.

https://firebase.google.com/docs/cloud-messaging/?refresh=1

If you dont like Google, this is an other 100% free option that allow you to do the same job, One Signal.

https://onesignal.com/

Upvotes: 2

Related Questions