
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@bonvoy/plugin-slack
Advanced tools
Slack notification plugin for bonvoy. Sends release notifications to Slack channels.
npm install @bonvoy/plugin-slack
Two authentication methods are supported:
Create an Incoming Webhook in Slack, then:
// bonvoy.config.js
export default {
plugins: [
['@bonvoy/plugin-slack', {
webhookUrl: process.env.SLACK_WEBHOOK_URL,
channel: '#releases', // optional, overrides webhook default
}]
]
};
Create a Slack App with chat:write scope, then:
// bonvoy.config.js
export default {
plugins: [
['@bonvoy/plugin-slack', {
token: process.env.SLACK_BOT_TOKEN, // xoxb-...
channel: '#releases', // required with token
}]
]
};
| Option | Type | Required | Description |
|---|---|---|---|
webhookUrl | string | One of webhookUrl or token | Slack webhook URL |
token | string | One of webhookUrl or token | Slack Bot Token (xoxb-...) |
channel | string | Required with token | Channel to post to |
username | string | No | Bot username |
iconEmoji | string | No | Bot icon emoji (e.g., :rocket:) |
mentions | string[] | No | Users/groups to mention (e.g., ['@here', '<@U123>']) |
onSuccess | boolean | No | Send on success (default: true) |
onFailure | boolean | No | Send on failure (default: false) |
includeChangelog | boolean | No | Include changelog in message (default: true) |
The plugin sends rich Slack messages using Block Kit:
🚀 Released 2 packages
• @myorg/core@1.2.0 (npm | release)
• @myorg/utils@1.1.0 (npm | release)
────────────────────
@myorg/core
- feat: add new feature
- fix: resolve bug
# Webhook method
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/T.../B.../xxx
# Bot method
SLACK_BOT_TOKEN=xoxb-...
MIT
FAQs
🚢 Slack notification plugin for bonvoy
We found that @bonvoy/plugin-slack demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.