Skip to content
Docs
Open Source & Free Forever

SQLite Database
Platform

Self-hostable, managed SQLite with an HTTP API and JavaScript SDK. Create databases in seconds, query from anywhere, run anywhere.

curl -fsSL https://boltstore.dev/install.sh | sh
dashboard.boltstore.local
DatabasesAnalyticsSettings
Storage
14.79 MB
of 10 GB free
Rows Read
528,001,446
last 24 hours
Avg Latency
12ms
p95: 34ms
Query Volume

Built for Modern Developers

Everything you need to ship fast, from local development to production deployment.

Instant Databases

Create a new SQLite database in under a second. No provisioning, no configuration, just a single API call.

HTTP API

Query your database from any runtime — Edge, Node, Deno, Bun. RESTful endpoints with JSON responses.

JavaScript SDK

TypeScript-first client with typed records, a query builder, and raw SQL support.

Per-Database Auth

API keys scoped to individual databases. CORS origins, read-only flags, and config per database.

Import & Export

Standard SQLite dump and restore. Migrate in and out at any time. Your data is always portable.

Analytics

Query counts, storage size, request rates, and error rates per database. Monitor everything from the dashboard.

Query in seconds

Connect to your database with a simple HTTP client. No drivers, no connection strings, no ORM required. Just fetch and go.

  • Works on Node.js, Bun, Deno, and browsers
  • TypeScript types included
  • Typed records with query builder
  • Raw SQL with parameterised queries
import { BoltstoreClient } from '@boltstore/client';

const client = new BoltstoreClient({
  url: 'http://localhost:8080',
  database: 'myapp',
  key: 'boltstore_...',
});

// Query records
const users = await client.table('users').query()
  .where('active', 'eq', true)
  .orderBy('created', 'desc')
  .limit(10)
  .get();

// Run raw SQL
const rows = await client.sql('SELECT * FROM users WHERE created > ?', ['2026-06-01']);

console.log(rows);

Free & Open Source

Boltstore is MIT licensed and available on GitHub. Self-host it, fork it, or contribute. No vendor lock-in, no hidden fees, no surprise bills.