Zero-Dependency Lightweight DBMS

One binary. Zero infrastructure.

A unified storage engine and reactive web console compiled into a single standalone Golang executable. No external services, no config files, no client tooling.

$ curl -fsSL https://get.diama.dev/aeris.sh | sh
aeris daemononline
pid 4821
listen :9090/tcp
engine bbolt + wal
deps 0 external
uptime 00:00:01
1
File
0
Deps
1
Cmd
01 / Philosophy

Databases shouldn't be infrastructure projects.

Traditional systems demand configuration, heavy services, and separate client apps. Aeris converges runtime and management into one artifact.

/ 01

Single Binary

The web console is embedded directly into the Go executable via go:embed. Deploy with a single file copy - no asset pipeline, no CDN.

/ 02

Embedded Web Server

Open your database console in any browser. No DBeaver, no desktop GUI, no SSH tunnel just to look at a table.

/ 03

Zero External Dependencies

Self-contained storage engine and HTTP services. Runs wherever Linux, macOS, or Windows can execute a native binary.

02 / Capabilities

Engineered for technical utility.

Essential developer capabilities without the architectural overhead of a platform.

F.01

Web IDE & Console

Full SQL editor with CodeMirror 6 syntax highlighting, schema-aware autocomplete, and live table viewers - served from the same binary.

SELECT * FROM nodes WHERE status = 'active' LIMIT 50;
Open live workspace →
F.02

Golang Performance

Low memory footprint, concurrent connection pooling, in-memory mode with disk persistence.

View stack →
F.03

Automated REST APIs

Expose tables over HTTP with automatic CRUD endpoints, token verification, and health checks.

Read more →
F.04

Stateful Sessions

Secure, token-based auth with scoped query permissions and per-session isolation.

Read more →
04 / Architecture

Zero external runtimes.

Pure Go backend with an embedded React static distribution compiled into one executable.

Golang Core
Engine & API
go:embed
UI Bundle
React / TS
Console
aeris
1 Binary
05 / Quick Start

Running in one command.

Local eval or production deploy - no runtime configuration required.

AERIS_DBMS
Single-binary embedded DBMS · built with Golang & React
GitHubDocs