1.3.1 • Published 11 months ago
@universal-packages/push-notifications v1.3.1
Push Notifications
Push notifications back end sender fro android using firebase and iOS using APNS.
Install
npm install @universal-packages/push-notificationsPushNotifications
PushNotifications is the main class interface to start sending push notifications the users devices.
import { PushNotifications } from '@universal-packages/push-notifications'
const pushNotifications = new PushNotifications({ firebase: ..., apns: ... })
const token = 'token that came from the user device'
await pushNotifications.pushNotification([token], { title: 'Hello', body: 'World' })Options
- firebase- FirebaseOptionsInclude this if you want capabilities for android devices.- credentialLocation- StringThe location of the firebase credential file. it looks something like this
 Or you can pacify the credential manually.- { "type": "service_account", "project_id": "universal", "private_key_id": "some_private_key", "private_key": "-----BEGIN PRIVATE KEY-----\nrandom\nstuff\nnonetheless\nrandom\nstuff\nnonetheless\n-----END PRIVATE KEY-----\n", "client_email": "firebase-adminsdk-mvgse@universal.iam.gserviceaccount.com", "client_id": "123321", "auth_uri": "https://accounts.google.com/o/oauth2/auth", "token_uri": "https://oauth2.googleapis.com/token", "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/firebase-adminsdk-mvgse%universal.iam.gserviceaccount.com", "universe_domain": "googleapis.com" }
- credential- CredentialThe credential object.- type- String
- projectId- String
- privateKeyId- String
- privateKey- String
- clientEmail- String
- clientId- String
- authUri- String
- tokenUri- String
- authProviderX509CertUrl- String
- clientX509CertUrl- String
- universeDomain- String
 
 
- dryRun- BooleanWhether to send the notification to the devices or not. This still emits the- pushevent.
- apns- ApnsOptionsInclude this if you want capabilities for iOS devices.- p8CertificateLocation- StringThe location of the p8 certificate file. Or you can pass the certificate manually.
- p8Certificate- StringThe p8 certificate.
- teamId- StringThe team id of you apple developer account used to generate the p8 certificate.
- keyId- StringThe key id of you apple developer account used to generate the p8 certificate.
- sandbox- BooleanWhether to use the sandbox environment or not.
- apnsTopic- StringThe bundle id of your app.
 
Instance methods
prepare() async
Prepares the instance to start sending push notifications.
release() async
Releases any resources used by the instance.
pushNotifications(tokens: String[], notification: Object)
- tokens- String[]The tokens of the devices you want to send the notification to.
- notification- ObjectThe notification object.- title- StringThe title of the notification.
- body- StringThe body of the notification.
- data- ObjectThe data to be sent with the notification.
 
Sends the notifications to all devices, tokens can come from any android or iOS device.
Events
PushNotifications will emit events as follow.
pushNotifications.on('warning', (event) => console.log(event))
pushNotifications.on('error', (event) => console.log(event))
pushNotifications.on('push', (event) => console.log(event))Typescript
This library is developed in TypeScript and shipped fully typed.
Contributing
The development of this library happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving this library.