🧾 Ellados
Guides API CLI

Ellados Documentation

Build modern distributed applications with our open-source platform

Getting Started

Install CLI

Install the Ellados CLI tool for your platform

curl https://ellados.org/install.sh | sh

Create Project

Generate a new project scaffolding

ellados new my-project

Run App

Start your development server

cd my-project && ellados dev

Core Features

Distributed Architecture

Build applications that scale across multiple nodes with consistent state management.

Real-time Sync

Automatic synchronization across all connected devices with conflict-free data resolution.

API Reference

🛡 Authentication API

// Initialize auth client
const auth = new ElladosAuth('YOUR_PROJECT_ID');

// Login with email
async function login(email: string, password: string) {
  const session = await auth.login(email, password);
  return session;
}

// Register new user
async function register(email: string, password: string) {
  const user = await auth.register(email, password);
  return user;
}

Ecosystem Tools

CLI

Command-line interface for project creation, deployment, and management.

Studio

Visual IDE with built-in deployment tools and real-time collaboration.

Marketplace

Find certified extensions and plugins for your project needs.

Analytics

Real-time monitoring and analytics built into every project.