eseliger / push-notifications-node

Pusher Beams Node.js Server SDK

Home Page:https://pusher.com/beams

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

Pusher Beams Node.js Server SDK

Full documentation for this SDK can be found here

Installation

The Beams Node.js server SDK is available on npm here.

You can install this SDK by using npm:

$ npm install @pusher/push-notifications-server --save

Or yarn if you prefer:

$ yarn add @pusher/push-notifications-server

Usage

Configuring the SDK for Your Instance

Use your instance id and secret (you can get these from the dashboard) to create a Beams PushNotifications instance:

const PushNotifications = require('@pusher/push-notifications-server');

let pushNotifications = new PushNotifications({
  instanceId: 'YOUR_INSTANCE_ID_HERE',
  secretKey: 'YOUR_SECRET_KEY_HERE'
});

Publishing a Notification

Once you have created your Beams PushNotifications instance you can publish a push notification to your registered & subscribed devices:

pushNotifications.publish(['hello'], {
  apns: {
    aps: {
      alert: 'Hello!'
    }
  },
  fcm: {
    notification: {
      title: 'Hello',
      body: 'Hello, world!'
    }
  }
}).then((publishResponse) => {
  console.log('Just published:', publishResponse.publishId);
}).catch((error) => {
  console.log('Error:', error);
});

About

Pusher Beams Node.js Server SDK

https://pusher.com/beams

License:MIT License


Languages

Language:JavaScript 100.0%