
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
node-slackr
Advanced tools
A node.js module for send notifications to Slack, support multiple channel and attachments
please move to Slack offecial API
A simple node.js library for send notifications to Slack via Incoming WebHooks.
You can also install via npm:
npm install node-slackr
Initialize client:
Slack = require('node-slackr');
slack = new Slack('https://<incoming-hook-url>');
Initialize with options:
slack = new Slack('https://<incoming-hook-url>',{
channel: "#development",
username: "slack-bot",
icon_url: "http://domain.com/image.png",
icon_emoji: ":ghost:"
});
If channel is not set default channel is #general
slack.notify("Message"); //without callback
slack.notify("Message", function(err, result){
console.log(err,result);
});
You can customize the name and icon of your Incoming Webhook.
messages = {
text: "Message",
channel: "#random",
username: "new-bot-name",
icon_url: "https://slack.com/img/icons/app-57.png"
}
slack.notify(messages);
Send multiple channels:
messages = {
text: "Message",
channel: ["#channel1","#channel2","#channel3"]
}
slack.notify(messages);
To display a richly-formatted message attachment in Slack, you can use the same JSON payload as above, but add in an attachments array. Each element of this array is a hash containing the following parameters:
messages = {
text: "Server Down",
channel: "#alert",
attachments: [
{
fallback: "Detected server down",
color: "#36a64f", // Can either be one of 'good', 'warning', 'danger'
fields: [
{
title: "Uptime",
value: "30 Hours",
short: false
},
{
title: "Downtime",
value: "20 Minutes",
short: false
}
]
}
]
};
slack.notify(messages, function(err, result) {
console.log(err, result);
});
For more information such as send URL link, Message Formatting, @mention and Parsing modes, please follow the link below
FAQs
A node.js module for send notifications to Slack, support multiple channel and attachments
The npm package node-slackr receives a total of 7,043 weekly downloads. As such, node-slackr popularity was classified as popular.
We found that node-slackr 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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.