
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
ah-slack-plugin
Advanced tools
A Slack server for ActionHero v18+. It will listen to all messages in all the rooms it is a member of, and do stuff.
Does you action have a response? It will be send back to slack.
Don't want to respond in Slack? Set data.toRender = false in your action's run method.
In your ActionHero project: npm install --save ah-slack-plugin
Make a new bot for your slack team: https://my.slack.com/apps -> manage -> custom integrations -> bots -> new Note the TOKEN
// config/plugins.js
const path = require('path')
exports['default'] = {
plugins: (api) => {
return {
'slack': {path: path.join(__dirname, '..', 'node_modules', 'ah-slack-plugin')}
}
}
}
// config/servers/slack.js
exports['default'] = {
servers: {
slack: (api) => {
return {
enabled: true,
token: process.env.SLACK_BOT_TOKEN,
// which messages should we try to parse as actions? (could be a /command, @ a user, etc)
// be sure to have a capture, as what you capture will be the action's name we try
// for example `/^action\s(\w*).*$/i` would match `action thing otherThing`, trying the action "thing"
messageActionRegexp: [
/^action\s(\w*).*$/i,
]
// how many messages should we store a history of receiving
// messages can be accessed in `api.servers.servers.slack.messages`
messagesToSave: 100
}
}
}
}
FAQs
ActionHero Slack Plugin
The npm package ah-slack-plugin receives a total of 3 weekly downloads. As such, ah-slack-plugin popularity was classified as not popular.
We found that ah-slack-plugin 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.