goroost
v1.0.2
Published
NodeJS library for goroost.com
Downloads
3
Maintainers
Readme
Goroost NodeJS module
NodeJS API for https://goroost.com/
###Send Notification
var roost = require('goroost')('APP_KEY', 'APP_SECRET');
var notification = {
alert: 'Hello There',
url: 'http://goroost.com',
segments: ['registered'],
};
roost.send(notification, function (err, result) {
if (err) {
console.log(err);
} else {
console.log(result);
}
});