
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.
queue-client
Advanced tools
This Node.js client for RabbitMQ provides simple PUB/SUB features.
Initialization of the client
var queue_client = require('queue-client');
var exchange_name = 'exchange-to-use';
var rabbitmq_connection = {
host: 'localhost',
port: 5672,
login: 'guest',
password: 'guest',
authMechanism: 'AMQPLAIN',
vhost: '/',
ssl: {
enabled: false
}
};
queue = queue_client.init(exchange_name, rabbitmq_connection)
The rabbitmq_connection is sent to the createConnection method of the amqp library. Check its documentation to see the available options/defaults.
Example of use to publish messages:
var topic = 'user.created';
queue.publish(topic, {user_id: 4});
Example of use to subscribe to messages:
var queue_name = 'welcome_emails';
queue.subscribe(queue_name, {ordered: true}, {
'user.created': function(payload, done) {
var user_id = payload.user_id;
// send welcome email to user_id
done(true);
}
});
To create a delayed queue, specify the delay in milliseconds in the subscription options:
var queue_name = 'apns_notifications';
queue.subscribe(queue_name, {delay: 2000}, {
'user.created': function(payload, done) {
var user_token = payload.user_token;
// send apns notification to user_token
done(true);
}
});
Note that order is NOT guaranteed across different routing keys in delayed queues.
FAQs
Node.js rabbitmq client
We found that queue-client 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.