Licence
MIT
Version
2.3.1
Deps
3
Size
63 kB
Vulns
0
Weekly
2.2K
@fedify/mysql: MySQL/MariaDB drivers for Fedify
This package provides Fedify's KvStore and MessageQueue
implementations for MySQL/MariaDB:
import { createFederation } from "@fedify/fedify";
import { MysqlKvStore, MysqlMessageQueue } from "@fedify/mysql";
import mysql from "mysql2/promise";
const pool = mysql.createPool("mysql://user:password@localhost/dbname");
const federation = createFederation({
kv: new MysqlKvStore(pool),
queue: new MysqlMessageQueue(pool),
});Installation
deno add jsr:@fedify/mysql # Deno
npm add @fedify/mysql mysql2 # npm
pnpm add @fedify/mysql mysql2 # pnpm
yarn add @fedify/mysql mysql2 # Yarn
bun add @fedify/mysql mysql2 # Bun