How to use the node-pushnotifications function in node-pushnotifications

To help you get started, we’ve selected a few node-pushnotifications examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github notifme / notifme-sdk / src / providers / push / fcm.js View on Github external
constructor (config: Object) {
    this.transporter = new PushNotifications({gcm: config})
  }
github notifme / notifme-sdk / src / providers / push / adm.js View on Github external
constructor (config: Object) {
    this.transporter = new PushNotifications({adm: {
      ...config,
      client_id: config.clientId,
      client_secret: config.clientSecret
    }})
  }
github notifme / notifme-sdk / src / providers / push / apn.js View on Github external
constructor (config: Object) {
    this.transporter = new PushNotifications({apn: config})
  }
github notifme / notifme-sdk / src / providers / push / wns.js View on Github external
constructor (config: Object) {
    this.transporter = new PushNotifications({wns: {
      ...config,
      client_id: config.clientId,
      client_secret: config.clientSecret
    }})
  }

node-pushnotifications

A cross-platform push service for node.js

MIT
Latest version published 16 days ago

Package Health Score

81 / 100
Full package analysis

Popular node-pushnotifications functions