
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
notifier-ez
Advanced tools
A universal notification package that supports multiple platforms through URL-based configuration
A unified notification service that supports multiple platforms including Discord, Telegram, Slack, Gotify, Bark, and SMTP email.
import { createNotifier } from "notifier-ez";
// Create a Discord notifier instance
let notifier = createNotifier(
"discord://CustomUsername:YOUR-WEBHOOK-TOKEN@CHANNEL-ID"
);
// Send notifications
notifier.send({
title: "CPU Usage Alert",
message: "CPU usage exceeded 90%",
priority: "high",
});
// create a smtp notification
notifier = createNotifier(
"smtp://username:password@host:port?from=fromAddress&to=toAddress,toAddress"
);
notifier.send({
title: "System Update",
message: "Deployment completed successfully",
priority: "normal",
});
notifier.send({
title: "Daily Report",
message: "All systems operational",
priority: "low",
});
Pass any of these url formats into the notifier, and the notifier will automatically detect the service type.
discord://username:webhook-token@channel-id
username: Your custom username for the webhookwebhook-token: The token part from your Discord webhook URLchannel-id: Your Discord channel IDtelegram://:bot-token@chat-id
bot-token: Your Telegram bot token URL encodedchat-id: Your chat ID (can be group or individual)slack://token@webhook-id
T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXXgotify://hostname:port/token
hostname: Your Gotify server hostnameport: Server port (optional)token: Your Gotify application tokenbark://device-key@server
device-key: Your Bark device keyserver: Bark server (default: api.day.app)smtp://username:password@host:port?from=fromAddress&to=toAddress1,toAddress2
username: SMTP usernamepassword: SMTP passwordhost: SMTP server hostnameport: SMTP port (usually 465 for SSL)from: Sender email addressto: Recipient email address(es), comma-separatedFAQs
A universal notification package that supports multiple platforms through URL-based configuration
We found that notifier-ez demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.