Socket
Book a DemoInstallSign in
Socket

@fedify/sqlite

Package Overview
Dependencies
Maintainers
1
Versions
166
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fedify/sqlite

SQLite drivers for Fedify

Source
npmnpm
Version
1.8.8
Version published
Weekly downloads
2.4K
77.94%
Maintainers
1
Weekly downloads
 
Created
Source

@fedify/sqlite: SQLite drivers for Fedify

JSR npm

This package provides a SQLite-based KvStore implementation for Fedify.

Usage

Deno

import { DatabaseSync } from 'node:sqlite';
import { SqliteKvStore } from '@fedify/sqlite';

const db = new DatabaseSync('./data.db');
const store = new SqliteKvStore(db);

Node.js

import { DatabaseSync } from 'node:sqlite';
import { SqliteKvStore } from '@fedify/sqlite';

const db = new DatabaseSync('./data.db');
const store = new SqliteKvStore(db);

Bun

import { Database } from 'bun:sqlite';
import { SqliteKvStore } from '@fedify/sqlite';

const db = new Database('./data.db');
const store = new SqliteKvStore(db);

Keywords

fedify

FAQs

Package last updated on 25 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts