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

@kffl/amqplib-as-promised

v5.0.3

Published

Amqlib wrapper for support publishing new messages as promised (fork)

Downloads

411

Readme

amqplib-as-promised

NOTE: This is a fork of amqplib-as-promised with some bugfixes and updated dependencies intended to be used until the changes get merged into the main repo.

CI Workflow NPM version NPM downloads

This module wrapping amqplib node.js library to provide classic Promise interface (instead of original implementation using Bluebird promises).

Publishing messages in a channel or confirm channel will resolve the promise only if operation will be finished.

Also, AMQP protocol closing channel when any error occurs. (even in case of using checkQueue method, error is emitted and channel is closed, when queue does not exist). That library wrapper automatically reconnects channel and returning error as a Promise reject response.

Requirements

This module requires Node >= 8.

Installation

npm install @kffl/amqplib-as-promised

Usage

(with async await syntax)

const { Connection } = require('amqplib-as-promised')
const connection = new Connection(AMQP_URL)
await connection.init()
const channel = await connection.createChannel() // or createConfirmChannel
await channel.assertQueue(queueName)
await channel.sendToQueue(queueName, Buffer.from(testMessage))
await channel.close()
await connection.close()

TypeScript version

import { Connection } from 'amqplib-as-promised'
const connection = new Connection(AMQP_URL)
await connection.init()
const channel = await connection.createChannel() // or createConfirmChannel
await channel.assertQueue(queueName)
await channel.sendToQueue(queueName, Buffer.from(testMessage))
await channel.close()
await connection.close()

For proper typing with TypeScript, @types/amqplib in devDependencies is needed. (compatible versions: 0.5.4 < 1)

API

Connection

| Method | arguments | return type | notes | | -------------------- | ----------------------------------------------------- | ------------------------ | ----- | | constructor | url: string options?: amqplib.Options.Connect | Connection | | | init | - | Promise<void> | | | createChannel | - | Promise<Channel> | | | createConfirmChannel | - | Promise<ConfirmChannel> | | | close | - | Promise<void> | | | waitForClose | - | Promise<void> | |

Channel

| Method | arguments | return type | notes | | -------------- | ------------------------------------------------------------------------------------------------------------------ | ---------------------------------------- | ----- | | checkQueue | queueName: string | Promise<amqplib.Replies.AssertQueue> | | | assertQueue | queueName: string options?: amqplib.Options.AssertQueue | Promise<amqplib.Replies.AssertQueue> | | | deleteQueue | queueName: string options?: amqplib.Options.DeleteQueue | Promise<amqplib.Replies.DeleteQueue> | | | sendToQueue | queueName: string content: Buffer options?: amqplib.Options.Publish | Promise<unknown> | | | bindQueue | queueName: string, source: string, pattern: string, args?: any | Promise<amqplib.Replies.Empty> | | | unbindQueue | queueName: string, source: string, pattern: string, args?: any | Promise<amqplib.Replies.Empty> | | | assertExchange | exchangeName: string exchangeType: string options?: amqplib.Options.AssertExchange | Promise<amqplib.Replies.AssertExchange> | | | checkExchange | exchangeName: string | Promise<amqplib.Replies.Empty> | | | deleteExchange | exchangeName: string options: amqplib.Options.DeleteExchange | Promise<amqplib.Replies.Empty> | | | bindExchange | destination: string source: string pattern: string args?: any | Promise<amqplib.Replies.Empty> | | | unbindExchange | destination: string source: string pattern: string args?: any | Promise<amqplib.Replies.Empty> | | | publish | exchange: string queue: string content: Buffer options?: amqplib.Options.Publish | Promise<unknown> | | | prefetch | count: number global: boolean | Promise<void> | | | consume | queueName: string handler: (message: amqplib.Message | null) => any options?: amqplib.Options.Consume | Promise<amqplib.Replies.Consume> | | | cancel | consumerTag: string | Promise<amqplib.Replies.Empty> | | | get | queueName: string options?: amqplib.Options.Get | Promise<Message | false> | | | ack | message: amqplib.Message allUpTo?: boolean | void | | | nack | message: amqplib.Message allUpTo?: boolean requeue?: boolean | void | | | close | - | Promise<void> | |

Confirm channel

| Method | arguments | return type | notes | | --------------- | ------------------------------------------------------------------------------------------------ | ------------------------------- | ----- | | sendToQueue | queueName: string content: Buffer options?: amqplib.Options.Publish | Promise<amqplib.Replies.Empty> | | | publish | exchange: string queue: string content: Buffer options?: amqplib.Options.Publish | Promise<amqplib.Replies.Empty> | | | waitForConfirms | exchange: string queue: string content: Buffer options?: amqplib.Options.Publish | Promise<void> | |

License

Copyright (c) 2019 Piotr Roszatycki [email protected]

Copyright (c) 2017-2018 Tadeusz Wawszczak

MIT