npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

azure-queue-consumer

v0.0.1

Published

Port of sqs-consumer for Azure data queue

Downloads

3

Readme

azure-queue-consumer

Build Status

Build Azure data queue-based applications without the boilerplate. Just define a function that receives an Azure data queue message and call a callback when the message has been processed.

Installation

npm install azure-queue-consumer --save

Usage

const Consumer = require('azure-queue-consumer');

const app = Consumer.create({
  queueUrl: 'https://account-name.queue.core.windows.net/queue-name',
  handleMessage: (message, done) => {
    // do some work with `message`
    done();
  }
});

app.on('error', (err) => {
  console.log(err.message);
});

app.start();
  • The queue is polled every second by default.
  • Messages are deleted from the queue once done() is called.
  • Messages are processed one at a time.

Credentials

By default the consumer will look for Azure credentials in the places specified by the Azure Storage SDK. The simplest option is to export your credentials as environment variables:

export AZURE_STORAGE_CONNECTION_STRING=...

If you need to specify your credentials manually, you can use a pre-configured instance of the Azure QueueService:

const Consumer = require('azure-queue-consumer');
const azureStorage = require('azure-storage');

const app = Consumer.create({
  queueUrl: 'https://account-name.queue.core.windows.net/queue-name',
  handleMessage: (message, done) => {
    // ...
    done();
  },
  queueService: azureStorage.createQueueServiceWithSas(
    'https://account-name.queue.core.windows.net/queue-name',
    '<SAS Token>'
  );
});

app.on('error', (err) => {
  console.log(err.message);
});

app.start();

API

Consumer.create(options)

Creates a new Azure data queue consumer.

Options

  • queueUrl - String - The Azure data queue URL
  • handleMessage - Function - A function to be called whenever a message is received. Receives a queue message object as its first argument and a function to call when the message has been handled as its second argument (i.e. handleMessage(message, done)).
  • pollDelaySeconds - Number - The delay (in seconds) between queue polling attempts while the queue is empty.
  • waitTimeSeconds - Number - maximum execution time across all potential retries, for requests made via the Queue service.
  • authenticationErrorTimeout - Number - The duration (in milliseconds) to wait before retrying after an authentication error (defaults to 10000).
  • queueService - Object - An optional Azure QueueService instance to use if you need to configure the client manually

consumer.start()

Start polling the queue for messages.

consumer.stop()

Stop polling the queue for messages.

Events

Each consumer is an EventEmitter and emits the following events:

|Event|Params|Description| |-----|------|-----------| |error|err, [message]|Fired when an error occurs interacting with the queue. If the error correlates to a message, that error is included in Params| |processing_error|err, message|Fired when an error occurs processing the message.| |message_received|message|Fired when a message is received.| |message_processed|message|Fired when a message is successfully processed and removed from the queue.| |response_processed|None|Fired after one batch of items (up to batchSize) has been successfully processed.| |stopped|None|Fired when the consumer finally stops its work.| |empty|None|Fired when the queue is empty (All messages have been consumed).|

Credits

Inspired by SQS Consumer