I want to push notification with node.js but the module in node.js don't have the send method.
Asked
Active
Viewed 150 times
1 Answers
0
Use the notification object like this documentation : http://docs.telerik.com/platform/backend-services/development/javascript-sdk/push-notifications/sending-push-from-client
el.data('Push/Notifications').create(notification, function(data) {
console.log(data);
}, function(e) {
console.log(e);
});

Julien Cousineau
- 1
- 1