Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing push notifications in sails js

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

I am using Sails js with mongodb.

can anyone help me with regarding configuration or which plugin to use to implement push notifications in sails js.

thanks in advance.

like image 594
Anil Kumar Avatar asked Jul 17 '15 05:07

Anil Kumar


Video Answer


1 Answers

socket.io(the push notification library that sails uses) has android and ios support. The only difference is, you can't use sails.io.js(sails's socket.io rest style client) as it's a javascript library. You should be able to just follow the docs for the android and ios libraries.

like image 76
aclave1 Avatar answered Sep 20 '22 02:09

aclave1