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.statusReturns 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.