Skip to content

Getting Started

Getting Started

Welcome to HeliosDB Nano! This section will help you get up and running quickly.

Quick Navigation

GuideDescriptionTime
InstallationInstall HeliosDB Nano for your platform2 min
Quick StartCreate your first database and run queries5 min
Deployment ModesChoose embedded, server, or in-memory mode5 min

Prerequisites

  • Rust 1.70+ (for building from source or using as library)
  • OR Pre-built binaries available for Linux, macOS, Windows

Fastest Path

Terminal window
# Install CLI
cargo install heliosdb-nano
# Start REPL
heliosdb-nano --repl ./mydb
# Create and query
> CREATE TABLE users (id INT PRIMARY KEY, name TEXT);
> INSERT INTO users VALUES (1, 'Alice');
> SELECT * FROM users;

What’s Next?

After getting started, explore: