Implement push notifications in js sails

I am new to js sails. I want to implement push notifications for android and IOS in js sails.

I am using Sails js with mongodb.

can someone help me regarding the configuration or which plugin to use to implement push notifications in jsails.

Thank you in advance.

+5
source share
3 answers

socket.io (a push edition library using sails) has android and ios . The only difference is that you cannot use sails.io.js (the sails socket.io rest style client), as it is a javascript library. You should just keep an eye on the docs for the android and ios libraries.

+2
source

I suggest you use mosca. It can be used for push notifications. You would like to help. There is another similar MQTT program.

0
source

I suggest you use fcm-node .

You do not need to worry about devices here. It has a simple interface for Google Firebase Cloud Messaging (FCM) and supports both Android and iOS, including topic messages and concurrent calls.

0
source

All Articles