A small in-browser SQLite database viewer/editor built with vite, react, Tailwind, and sql.js.
- Load and edit SQLite databases in the browser locally
- Runs SQLite via WebAssembly using
sql.js
- React + TypeScript
- Vite
- Tailwind CSS
- sql.js (WASM)
- bun (or your preferred package manager)
bun installbun run devbun run buildbun run preview- The app uses
import.meta.env.BASE_URLto locate thesql.jsWASM files (seesrc/lib/db.ts). - Vite is configured with
base: "/sqlite-editor"invite.config.tsso that it works with github pages. If you deploy under a different subpath, update the value accordingly.