
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
mqemitter-rabbit
Advanced tools
An Opinionated Message Queue with an emitter-style API, but with callbacks.
THIS IS NOT AN OFFICIAL MODULE FROM @mcollina.
If you need a multi process MQEmitter, check out the table below:
npm install mqemitter-rabbit
import { MessageFactory, MQEmitterAMQPLib } from 'mqemitter-rabbit';
const mqemitter = new MQEmitterAMQPLib({
separator: ':'
});
mqemitter.startConnection(
{
url: 'amqps://username:password@hosname/db', // URL of your AMQP instance
queues: ['entry:message', 'process:message', 'close:message'], // The queues to attach to
method: ApplicationType.BOTH // Your connection method, must be one of: listener, publisher or both.
},
(err, cb) => {
if (err !== undefined) {
return err;
}
cb?.on(
'conversation:created', (
message, done
) => {
console.log(
'Creating new conversation', message
);
cb.release(message)
return done();
}
);
const message = new MessageFactory().generate(
'conversation:created', // Topic: Required.
{ // Content: aditional content can be attached to the Message.
user: {
name: 'Iago Calazans',
age: 29
}
}
);
cb?.emit(
message, // The message itself
'entry:message', // Queue to publish/emit message
undefined, // Some headers to attach to Message
(err) => { // Err callback
console.log(err); // You can retrieve the errors while trying to attach.
}
);
}
);
<object>
concurrency
<number>
maximum number of concurrent messages that can be on concurrent delivery. Default: 0
wildcardOne
<string>
a char to use for matching exactly one non-empty level word. Default: +
wildcardSome
<string>
a char to use for matching multiple level wildcards. Default: #`matchEmptyLevels
<boolean>
If true then wildcardOne
also matches an empty word. Default: true
separator
<string>
a separator character to use for separating words. Default: /
Create a new MQEmitterAMQPLib class.
MQEmitterAMQPLib is the class and function exposed by this module.
It can be created by using new MQEmitterAMQPLib({options})
.
For more information on wildcards, see this explanation or Qlobber.
message
<object>
callback
<Function>
(error) => void
<Error>
| null
Emit the given message, which must have a topic
property, which can contain wildcards as defined on creation.
topic
<string>
listener
<Function>
(message, done) => void
callback
<Function>
() => void
Add the given listener to the passed topic. Topic can contain wildcards, as defined on creation.
The listener
must never error and done
must not be called with an err
object.
callback
will be called when the event subscribe is done correctly.
The inverse of on
.
callback
<Function>
() => void
Close the given emitter. After, all writes will return an error.
MQEmitter supports the use of wildcards: every topic is splitted according to separator
.
The wildcard character +
matches exactly non-empty one word:
emitter.on('hello/+/world', function(message, cb) {
// will ONLY capture { topic: 'hello/my/world', 'something': 'more' }
console.log(message)
cb()
})
emitter.on('hello/+', function(message, cb) {
// will not be called
console.log(message)
cb()
})
const messageComplete = new MessageFactory().generate(
'hello/my/world', { something: 'more' }
);
const messageIncomplete = new MessageFactory().generate(
'hello//world', { something: 'more' }
);
emitter.emit(messageComplete)
emitter.emit(messageIncomplete)
The wildcard character +
matches one word:
emitter.on('hello/+/world', function(message, cb) {
// will capture { topic: 'hello/my/world', 'something': 'more' }
// and capture { topic: 'hello//world', 'something': 'more' }
console.log(message)
cb()
})
emitter.on('hello/+', function(message, cb) {
// will not be called
console.log(message)
cb()
})
const messageComplete = new MessageFactory().generate(
'hello/my/world', { something: 'more' }
);
const messageIncomplete = new MessageFactory().generate(
'hello//world', { something: 'more' }
);
emitter.emit(messageComplete)
emitter.emit(messageIncomplete)
The wildcard character #
matches zero or more words:
emitter.on('hello/#', function(message, cb) {
// this will print { topic: 'hello/my/world', 'something': 'more' }
console.log(message)
cb()
})
emitter.on('#', function(message, cb) {
// this will print { topic: 'hello/my/world', 'something': 'more' }
console.log(message)
cb()
})
emitter.on('hello/my/world/#', function(message, cb) {
// this will print { topic: 'hello/my/world', 'something': 'more' }
console.log(message)
cb()
})
const message = new MessageFactory().generate(
'hello/my/world', { something: 'more' }
);
emitter.emit(message)
Of course, you can mix #
and +
in the same subscription.
FAQs
RabbitMQ-powered MQEmitter on AMQP protocol
The npm package mqemitter-rabbit receives a total of 0 weekly downloads. As such, mqemitter-rabbit popularity was classified as not popular.
We found that mqemitter-rabbit 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.