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:");