Build modern distributed applications with our open-source platform
Install the Ellados CLI tool for your platform
curl https://ellados.org/install.sh | sh
Generate a new project scaffolding
ellados new my-project
Start your development server
cd my-project && ellados dev
Build applications that scale across multiple nodes with consistent state management.
Automatic synchronization across all connected devices with conflict-free data resolution.
// 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;
}
Command-line interface for project creation, deployment, and management.
Visual IDE with built-in deployment tools and real-time collaboration.
Find certified extensions and plugins for your project needs.
Real-time monitoring and analytics built into every project.