
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
ges-competing-consumer
Advanced tools
A Node.js utility for consuming (Get) Event Store Competing Consumer subscriptions using Event Store's HTTP API.
A Node.js utility for consuming (Get) Event Store Competing Consumer subscriptions using Event Store's HTTP API.
Available on npm:
npm install ges-competing-consumer
let consumer = new CompetingConsumer(stream, group, handler, options)
The CompetingConsumer
constructor takes the following arguments:
stream
: The stream to consume.group
: The name of the configured subscription group.handler
: The function to invoke with each incoming event. The handler
function must take a single event
argument, which is the raw event as received from Event Store. It must return a promise, which resolves when the event has been processed, or rejects in case of an error. When the promise resolves, the event will be ack'ed with Event Store, and when it rejects the event will be nack'ed with Event Store. See Usage example below.options
: A hash of options:
eventStoreUrl
: The Event Store URL with protocol, domain and port. Example: http://eventstore.example.com:2113
. If not set, we will default to using process.env.EVENT_STORE_URL
. And if neither of those are set an exception will be thrown at runtime.concurrency
: Maximum number of events to handle concurrently. Defaults to 1
, meaning that the consumer won't pull any events from the subscription until the current event has been handled and ack'ed.onEvent
: Callback for logging purposes. Invoked when an even is received. Called with the event as its single argument. Defaults to do nothing.onAck
: Callback for logging purposes. Invoked when an event is acked. Called with the event as its single argument. Defaults to do nothing.onNack
: Callback for logging purposes. Invoked when an even is nacked. Called with the event as its single argument. Defaults to do nothing.onError
: Callback for logging purposes. Invoked when an error occurs (fx a bad status code from Event Store, or a handler that rejects) is received with the event as its single argument. Defaults to console.error()
log the error stack.Note: You must create the Competing Consumer subscription in Event Store first manually.
consumer.start()
Will tell the consumer to start pulling from the subscription. Nothing happens until you call this function.
consumer.stop()
Tells the consumer to stop pulling. Returns a promise which resolves after all already active events have been handled and ack'ed. After the promise resolves it's safe to stop the Node process.
import CompetingConsumer from 'ges-competing-consumer'
function handler(event) {
//`event` is the raw event from Event Store
//You can get the event data like this:
let data = JSON.parse(event.data)
//The consumer will wait until the `handler` function resolves before ack'ing to Event Store
return doImportantWork(data) //returns a promise
}
let consumer = new CompetingConsumer('MyStream', 'my-group', handler, {
eventStoreUrl: 'http://eventstore.example.com:2113',
concurrency: 5
})
//Start pulling events
consumer.start()
//Stop after 10 seconds
setTimeout(function() {
consumer.stop()
.then(() => {
console.log('Done for today!')
process.exit()
})
}, 10 * 1000)
FAQs
A Node.js utility for consuming (Get) Event Store Competing Consumer subscriptions using Event Store's HTTP API.
We found that ges-competing-consumer 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's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
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.