Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
alertifii-js
Advanced tools
A Node JS module written in Typescript to use with Alertifii notifications app
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.
npm install --save alertifii-js
Please read the complete documentation in the docs folder
/*
JAVASCRIPT
*/
// Load the module
var Alertifii = require( 'alertifii-js').Alertifii;
// Instance
const alertifii = new Alertifii('integration_id')
// Simple notification (without personalization)
alertifii
.send('My title', 'My message')
.then(console.log)
.catch(console.error)
// Custom notification
alertifii
// Setting the sound
.setSound('cashregister')
// If the priority is 2, you have to provide an expire time and a retry time (see the official API for more info)
.setPriority(2, 60, 30)
// Set an url to access on tap
.setUrl('https://www.github.com/pagertree/alertifii-js', 'Alertifii-JS github')
// Set custom timestamp (must to be unix timestamp, not javascript time!!!)
.setTimestamp(Math.floor(new Date(2020, 2, 1).getTime() / 1000))
// Add a file
.setAttachment('image.jpg', 'path/to/your/file.jpg')
// Mark message as html
.setHtml()
// Send
.send('Submit an issue', 'Click on the link to submit an issue')
.then((msj) => {
console.log(msj)
})
.catch((e) => {
console.error(e)
})
/*
TYPESCRIPT
*/
// Load the module
import { Alertifii } from 'alertifii-js'
// Instance
const alertifii = new Alertifii('integration_id')
// Simple notification (without personalization)
alertifii
.send('My title', 'My message')
.then(console.log)
.catch(console.error)
// Custom notification
alertifii
// Setting the sound
.setSound('cashregister')
// If the priority is 2, you have to provide an expire time and a retry time (see the official API for more info)
.setPriority(2, 60, 30)
// Set an url to access on tap
.setUrl('https://www.github.com/pagertree/alertifii-js', 'Alertifii-JS github')
// Set custom timestamp (must to be unix timestamp, not javascript time!!!)
.setTimestamp(Math.floor(new Date(2020, 2, 1).getTime() / 1000))
// Add a file
.setAttachment('image.jpg', 'path/to/your/file.jpg')
// Mark message as html
.setHtml()
// Send
.send('Submit an issue', 'Click on the link to submit an issue')
.then((msj) => {
console.log(msj)
})
.catch((e) => {
console.error(e)
})
// Load the module
import { Alertifii } from 'alertifii-js'
// Use this inside an async function
const sendNotification = async () => {
// Instance
const alertifii = new Alertifii('integration_id')
// Custom notification
alertifii
// Setting the sound
.setSound('cashregister')
// If the priority is 2, you have to provide an expire time and a retry time (see the official API for more info)
.setPriority(2, 60, 30)
// Add a file
.setAttachment('image.jpg', 'path/to/your/file.jpg')
// Set an url to access on tap
.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
FAQs
Library to send notifications with Alertifii
We found that alertifii-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.