Skip to content

fedify-dev/amqp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@fedify/amqp: AMQP/RabbitMQ driver for Fedify

JSR npm GitHub Actions

Note

Although it's theoretically possible to be used with any AMQP 0-9-1 broker, this package is primarily designed for and tested with RabbitMQ.

This package provides Fedify's MessageQueue implementation for AMQP, which is supported by RabbitMQ:

Here is an example of how to use it:

import { createFederation } from "@fedify/fedify";
import { AmqpMessageQueue } from "@fedify/amqp";
import { connect } from "amqplib";

const federation = createFederation({
  queue: new AmqpMessageQueue(await connect("amqp://localhost")),
  // ... other configurations
});

Installation

Deno

deno add @fedify/amqp

Node.js

npm install @fedify/amqp

Bun

bun add @fedify/amqp

Changelog

Version 0.2.0

To be released.

Version 0.1.0

Initial release. Released on October 14, 2024.