bun-sqlite

Installation
SKILL.md

Bun SQLite

Use this skill when working with SQLite databases using Bun's built-in, high-performance SQLite driver.

Key Concepts

Opening a Database

Bun includes a native SQLite driver:

import { Database } from "bun:sqlite";

// Open or create database
const db = new Database("mydb.sqlite");

// In-memory database
const memDb = new Database(":memory:");
Installs
30
GitHub Stars
166
First Seen
Feb 13, 2026
bun-sqlite — thebushidocollective/han