Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@bbc/cloudflare-queue-consumer
Advanced tools
Build Cloudflare Queue applications without the boilerplate
Build Cloudflare Queues applications without the boilerplate. Just define an async function that handles the message processing.
Based on sqs-consumer.
Note: This package is still in development and should be used with caution.
To install this package, simply enter the following command into your terminal (or the variant of whatever package manager you are using):
npm install @bbc/cloudflare-queue-consumer
Visit https://bbc.github.io/cloudflare-queue-consumer/ for the full API documentation.
import { Consumer } from "@bbc/cloudflare-queue-consumer";
const consumer = new Consumer({
accountId: process.env.ACCOUNT_ID, // Your Cloudflare account ID
queueId: process.env.QUEUE_ID, // The Queue ID that you want to use.
handleMessage: async (message) => {
// Your message handling code...
},
});
consumer.on("error", (err) => {
console.error(err.message);
});
consumer.on("processing_error", (err) => {
console.error(err.message);
});
consumer.start();
Some implementation notes:
handleMessage
will send one message to the handler at a time, if you would prefer to receive multiple messages at once, use the handleMessageBatch
method instead.
alwaysAcknowledge
option to true
.retryMessagesOnError
option to true
.
retryMessageDelay
option.In order to authenticate with the Cloudflare API, you will need to create an API token with read and write access to Cloudflare Queues, more information can be found here.
Copy that token and set it as the value for an environment variable named QUEUES_API_TOKEN
.
You'll also find an example project in the folder ./example
, set the variables ACCOUNT_ID
and QUEUE_ID
and then run this with the command pnpm dev
.
Consumer.create(options)
Creates a new SQS consumer using the defined options.
consumer.start()
Start polling the queue for messages.
consumer.stop(options)
Stop polling the queue for messages. You can find the options definition here.
By default, the value of abort
is set to false
which means pre existing requests to Cloudflare will still be made until they have concluded. If you would like to abort these requests instead, pass the abort value as true
, like so:
consumer.stop({ abort: true })
consumer.status
Returns the current status of the consumer.
isRunning
- true
if the consumer has been started and not stopped, false
if was not started or if it was stopped.isPolling
- true
if the consumer is actively polling, false
if it is not.consumer.updateOption(option, value)
Updates the provided option with the provided value.
Please note that any update of the option pollingWaitTimeMs
will take effect only on next polling cycle.
You can find out more about this here.
Each consumer is an EventEmitter
and emits these events.
We welcome and appreciate contributions for anyone who would like to take the time to fix a bug or implement a new feature.
But before you get started, please read the contributing guidelines and code of conduct.
Cloudflare Queue Consumer is distributed under the Apache License, Version 2.0, see LICENSE for more information.
FAQs
Build Cloudflare Queue applications without the boilerplate
We found that @bbc/cloudflare-queue-consumer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.