parse-push
v0.0.3
Published
Library to support sending push notifications using Parse
Readme
#node-parse-push
Library for using ParsePush - https://www.parse.com/docs/push_guide
##Install
npm install parse-pushOr check out from source
git clone [email protected]:hootware/node-parse-push.git
cd node-parse-push
npm link##Usage
Send data to a number of channels
var Push = require("parse-push");
//Create new push instance
var push = new Push({
applicationId: "MyApplicationId",
restApiKey: "MyRestApiKey"
});
//Now send to some channels
push.sendToChannels(["channel1","channel2","channel3"], {"foo":"bar"}, function(error, data){
if (error) {
console.error("Oh no it went wrong!: " + error.message);
} else {
console.log("It went well! ", data);
}
});