0.0.7 • Published 7 years ago

faber-push-notification v0.0.7

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

push notification for apple push notification (APN) and google cloud messaging (GCM)

Install

$ npm install --save faber-push-notification

Usage

var PushNotification = require('faber-push-notification');
var DeviceType = PushNotification.DeviceType;
var path = require('path');

// APN: cert.pem, key.pem should be configured
// GCM: configure console to generate gcm.sender
PushNotification.init({
	apn: {
		cert: path.resolve('./keys/cert.pem'),
		key: path.resolve('./keys/key.pem')
	},
	gcm: {
		apiKey: 'gcm-api-key'
	}
});

var iosToken = 'iphone-device-token';
var androidToken = 'android-device-token';
var message = 'some text to push...';
var badge = null;
var sound = null;
var payload = null;

// send a notification to a single device
PushNotification.pushSingle(DeviceType.IOS, iosToken, message, badge, sound, payload);
PushNotification.pushSingle(DeviceType.ANDROID, androidToken, message, badge, sound, payload);

// send a notification to multiple devices
PushNotification.prepare(message, badge, sound, payload);
PushNotification.addTarget(DeviceType.IOS, iosToken);
PushNotification.addTarget(DeviceType.ANDROID, androidToken);
PushNotification.addTarget(DeviceType.ANDROID, anotherToken);
PushNotification.push();

Configuring APN and GCM

APN

GCM

License

MIT © FaberODT

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago