2.1.32 • Published 5 years ago

basebot-util-fcm v2.1.32

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

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
2.1.32

5 years ago

2.1.17

5 years ago

2.1.14

5 years ago

2.1.0

5 years ago

2.0.2

5 years ago

1.0.0

5 years ago

0.5.2

5 years ago