@parse/push-adapter

6.2.0 • Public • Published

Parse Server Push Adapter

Build Status Snyk Badge Coverage auto-release

Node Version

npm latest version


The official Push Notification adapter for Parse Server. See Parse Server Push Configuration for more details.


Silent Notifications

If you have migrated from parse.com and you are seeing situations where silent (newsstand-like presentless) notifications are failing to deliver please ensure that your payload is setting the content-available attribute to Int(1) and not "1" This value will be explicitly checked.

Logging

You can enable verbose logging with environment variables:

VERBOSE=1

or 

VERBOSE_PARSE_SERVER_PUSH_ADAPTER=1

This will produce a more verbose output for all the push sending attempts

Using a Custom Version on Parse Server

Install Push Adapter

npm install --save @parse/push-adapter@<VERSION>

Replace <VERSION> with the version you want to install.

Configure Parse Server

const PushAdapter = require('@parse/push-adapter').default;
const parseServerOptions = {
  push: {
    adapter: new PushAdapter({
      ios: {
        /* Apple push options */
      },
      android: {
        /* Android push options */
      },
      web: {
        /* Web push options */
      },
      expo: {
        /* Expo push options */
      },
    }),
  },
  /* Other Parse Server options */
}

Expo Push Options

Example options:

expo: {
  accessToken: '<EXPO_ACCESS_TOKEN>',
},

For more information see the Expo docs.

Package Sidebar

Install

npm i @parse/push-adapter

Weekly Downloads

32,105

Version

6.2.0

License

MIT

Unpacked Size

67.3 kB

Total Files

11

Last publish

Collaborators

  • dplewis
  • davimacedo
  • mtrezza
  • parseadmin