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

@jakguru/amqplib-oop-ratelimiter

v1.0.14

Published

A rate-limited queue processor for ampqlib

Downloads

454

Readme

amqplib-oop-ratelimiter

Love RabbitMQ but want to be able to have more control over how quickly you consume messages? Then this library is the answer you've been waiting for! A simple, easy to use (and even easy to instrument) client for connecting to RabbitMQ (or really anything that uses amqplib under the hood) and processing messages as quickly (or as slowly) as you allow it to.

This library provides a robust and flexible solution for managing message consumption rate, allowing you to optimize your application's performance and resource usage. It offers a fine-grained control over the rate at which messages are consumed, making it an ideal choice for applications that need to handle high volumes of messages without overwhelming their processing capabilities.

Whether you're dealing with a high-traffic e-commerce platform, a real-time analytics system, or a complex microservices architecture, this library gives you the power to manage your message queues effectively. It's designed to work seamlessly with RabbitMQ and any other systems that use amqplib, providing a consistent and intuitive API that developers will find easy to use.

Moreover, this library is designed with instrumentation in mind, making it easy to integrate with monitoring and observability tools. This means you can keep a close eye on your message queues, spotting potential issues before they become problems and making informed decisions about scaling and resource allocation.

In short, if you're looking for a way to consume RabbitMQ messages at your own pace, this library provides the tools and flexibility you need. Give it a try and take control of your message consumption today!

Doc Coverage Badge

Installation

npm install @jakguru/amqplib-oop-ratelimiter

or

yarn add @jakguru/amqplib-oop-ratelimiter

Usage

Import / Require the library

import { RateLimitedQueueClient } from '@jakguru/amqplib-oop-ratelimiter'

or

import RateLimitedQueueClient from '@jakguru/amqplib-oop-ratelimiter'

or

const { RateLimitedQueueClient } = require('@jakguru/amqplib-oop-ratelimiter')

Create a new instance of the client

type MyItemType = {
  id: string
  name: string
}

const client = new RateLimitedQueueClient<MyItemType>(
  'my-queue',
  {
    connection: {}, // amqplib connection options
    queue: {
      durable: true,
    },
  },
  async (item: MyItemType) => {
    // do something with the item
  },
  {
    interval: 1000, // ms
    perInterval: 10,
  }
)

Enqueue Items

const item: MyItemType = {
  id: '123',
  name: 'My Item',
}
client.enqueue(item)