alertifii-js
A Node JS module written in Typescript to use with Alertifii notifications app
Breaking changes from v0.x.x
This entire library has been rewritten to be based on promises.
The code has been restructured, and the methods changed to make it more complete and versatile.
If you were using a version of the 0.x.x branch, please check the documentation to adapt your code.
Installation
npm install --save alertifii-js
Documentation
Please read the complete documentation in the docs folder
Usage
Promises
var Alertifii = require( 'alertifii-js').Alertifii;
const alertifii = new Alertifii('integration_id')
alertifii
.send('My title', 'My message')
.then(console.log)
.catch(console.error)
alertifii
.setSound('cashregister')
.setPriority(2, 60, 30)
.setUrl('https://www.github.com/pagertree/alertifii-js', 'Alertifii-JS github')
.setTimestamp(Math.floor(new Date(2020, 2, 1).getTime() / 1000))
.setAttachment('image.jpg', 'path/to/your/file.jpg')
.setHtml()
.send('Submit an issue', 'Click on the link to submit an issue')
.then((msj) => {
console.log(msj)
})
.catch((e) => {
console.error(e)
})
import { Alertifii } from 'alertifii-js'
const alertifii = new Alertifii('integration_id')
alertifii
.send('My title', 'My message')
.then(console.log)
.catch(console.error)
alertifii
.setSound('cashregister')
.setPriority(2, 60, 30)
.setUrl('https://www.github.com/pagertree/alertifii-js', 'Alertifii-JS github')
.setTimestamp(Math.floor(new Date(2020, 2, 1).getTime() / 1000))
.setAttachment('image.jpg', 'path/to/your/file.jpg')
.setHtml()
.send('Submit an issue', 'Click on the link to submit an issue')
.then((msj) => {
console.log(msj)
})
.catch((e) => {
console.error(e)
})
Async/await
import { Alertifii } from 'alertifii-js'
const sendNotification = async () => {
const alertifii = new Alertifii('integration_id')
alertifii
.setSound('cashregister')
.setPriority(2, 60, 30)
.setAttachment('image.jpg', 'path/to/your/file.jpg')
.setUrl('https://www.github.com/pagertree/alertifii-js', 'Alertifii-JS github')
try {
const response = await alertifii.send('Submit an issue', 'Click on the link to submit an issue')
console.log(response)
} catch (error) {
console.error(error)
}
}
For any suggestion or issue, please go to the issues section on the Github repository