Skip to main content
Home
This release is 7 versions behind 1.9.1 — the latest version of @fedify/amqp. Jump to latest

Built and signed on GitHub Actions

AMQP/RabbitMQ driver for Fedify

This package works with Node.js, Deno, Bun
This package works with Node.js
This package works with Deno
This package works with Bun
JSR Score
100%
Published
2 months ago (1.8.9)
Package root>deno.json
{ "name": "@fedify/amqp", "version": "1.8.9", "license": "MIT", "exports": { ".": "./src/mod.ts", "./mq": "./src/mq.ts" }, "imports": { "@alinea/suite": "jsr:@alinea/suite@^0.6.3" }, "exclude": [ ".github", "node_modules", "npm", "pnpm-lock.yaml" ], "tasks": { "build": "pnpm build", "check": "deno fmt --check && deno lint && deno check *.ts", "test": "deno test --allow-net --allow-env", "test:node": { "dependencies": [ "build" ], "command": "node --experimental-transform-types --test" }, "test:bun": { "dependencies": [ "build" ], "command": "bun test --timeout 15000" }, "test-all": { "dependencies": [ "test", "test:node", "test:bun" ] } } }