
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.
@addapptables/manager-bus
Advanced tools
- manager-bus is a library for nodejs oriented to microservices, this library is made to work with [nestjs](https://docs.nestjs.com/)
manager-bus is a library for nodejs oriented to microservices, this library is made to work with nestjs
To get started, let's install the package through npm:
npm i @addapptables/manager-bus --S
Install peerDependencies
npm i @addapptables/bus @addapptables/cqrs @nestjs/common @nestjs/core --S
import { ManagerBusModule, BusType } from '@addapptables/manager-bus';
@Module({
imports: [
ManagerBusModule.forRoot({
busType: BusType.RMQ,
options: {
exchange: 'exchange',
service: 'domain-service',
host: process.env.BUS_URL,
},
})
],
})
export class YourModule { }
import { ICommandHandler, CommandHandler, ICommand } from '@addapptables/cqrs';
@CommandHandler({ context: 'context', action: 'action' })
export class CommandHandler implements ICommandHandler<YourCommandClass> {
handle = async (command: ICommand<YourCommandClass>): Promise<void> => {
// Save in event store
}
}
import { IEventHandler, IEvent, EventHandler } from '@addapptables/cqrs';
@EventHandler({ context: 'context', action: 'action' })
export class ActionHandler implements IEventHandler<YourActionEvent> {
handle = async ({ data }: IEvent<YourActionEvent>): Promise<void> => {
try {
console.log(data);
} catch (error) {
console.log('error', error);
}
}
}
FAQs
- manager-bus is a library for nodejs oriented to microservices, this library is made to work with [nestjs](https://docs.nestjs.com/)
We found that @addapptables/manager-bus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.