basebot-util-fcm

2.1.32 • Public • Published

basebot-util-fcm

Send notifications using FCM

Usage

Requires the following env vars:

FIREBASE Your service account JSON (docs)

Example

  import { notify, schedule } from 'basebot-util-fcm'
  import { storage } from '../services'
 
  const notification = {
    userId: 'some-user-id',
    storage,
    payload: {
      text: 'Your report is ready',
      trigger: 'reportReady',
      click_action: 'NOTIFICATION_CLICK'
    }
  }
 
  // sending a notification immediately
  notify(notification)
 
  // scheduling a notification
  schedule(new Date(2020, 11, 21, 5, 30, 0), notification) // any date object

Readme

Keywords

none

Package Sidebar

Install

npm i basebot-util-fcm

Weekly Downloads

1

Version

2.1.32

License

MIT

Unpacked Size

11 kB

Total Files

8

Last publish

Collaborators

  • calvin-evans