Push notifications back end sender
npm install @universal-packages/push-notifications


Push notifications back end sender fro android using firebase and iOS using APNS.
``shell`
npm install @universal-packages/push-notifications
PushNotifications is the main class interface to start sending push notifications the users devices.
`js
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' })
`
- firebase FirebaseOptionscredentialLocation
Include this if you want capabilities for android devices.
- String`
The location of the firebase credential file. it looks something like this
json`
{
"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
Or you can pacify the credential manually.
- Credentialtype
The credential object.
- StringprojectId
- StringprivateKeyId
- StringprivateKey
- StringclientEmail
- StringclientId
- StringauthUri
- StringtokenUri
- StringauthProviderX509CertUrl
- StringclientX509CertUrl
- StringuniverseDomain
- StringdryRun
- Booleanpush
Whether to send the notification to the devices or not. This still emits the event.apns
- ApnsOptionsp8CertificateLocation
Include this if you want capabilities for iOS devices.
- Stringp8Certificate
The location of the p8 certificate file. Or you can pass the certificate manually.
- StringteamId
The p8 certificate.
- StringkeyId
The team id of you apple developer account used to generate the p8 certificate.
- Stringsandbox
The key id of you apple developer account used to generate the p8 certificate.
- BooleanapnsTopic
Whether to use the sandbox environment or not.
- String
The bundle id of your app.
#### 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[]notification
The tokens of the devices you want to send the notification to.
- Objecttitle
The notification object.
- Stringbody
The title of the notification.
- Stringdata
The body of the notification.
- Object
The data to be sent with the notification.
Sends the notifications to all devices, tokens can come from any android or iOS device.
PushNotifications will emit events as follow.
`js``
pushNotifications.on('warning', (event) => console.log(event))
pushNotifications.on('error', (event) => console.log(event))
pushNotifications.on('push', (event) => console.log(event))
This library is developed in TypeScript and shipped fully typed.
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.
- Code of Conduct
- Contributing Guide