
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.
@simoko/shec-event-bus-redis
Advanced tools
An open source composable commerce engine built for developers.
Redis Event Bus module for Shec. When installed, the events system of Shec is powered by BullMQ and io-redis. BullMQ is responsible for the message queue and worker. io-redis is the underlying Redis client, that BullMQ connects to for events storage.
Install the module:
yarn add @simoko/shec-event-bus-redis
Add the module to your shec-config.js:
module.exports = {
// ...
modules: [
{
resolve: "@simoko/shec-event-bus-redis",
options: {
redisUrl: "redis:.."
},
},
],
// ...
}
The module can be configured with the following options:
| Option | Type | Description | Default |
|---|---|---|---|
redisUrl | string | URL of the Redis instance to connect to. | events-worker |
queueName | string? | Name of the BullMQ queue. | events-queue |
queueOptions | object? | Options for the BullMQ queue. See BullMQ's documentation. | {} |
redisOptions | object? | Options for the Redis instance. See io-redis's documentation | {} |
Info: See how the options are applied in the RedisEventBusService and loader.
If you do not provide a redisUrl in the module options, the server will fail to start.
FAQs
Redis Event Bus Module for Shec
We found that @simoko/shec-event-bus-redis 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
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.