The Complete Full-Stack
Platform for Developers.

Infrastructure as a Primitive. Aerostack unifies your entire full-stack workflow into one CLI, one SDK, and one Platform.

Traditional: 8+ services to provision & maintainAerostack: One SDK
Database
Redis
Kafka/Queue
AI (30+ LLMs)
Auth
Vector & Search
Workflow
Socket
Aerostack SDKdb · cache · queue · ai · auth · vector · workflow · socket
What is Aerostack?

Aerostack is a Productivity Layer for modern infrastructure. We transform the complex task of provisioning and managing individual services (Databases, Cache, Storage, Queues, AI) into a seamless, unified experience.

The 3-Layer Stack
1. The CLI

One config file. Automated provisioning. Secure environments. The source of truth for your infrastructure.

2. The SDK

One pattern for every primitive. sdk.db, sdk.cache, sdk.ai—all pre-wired and type-safe from day one.

3. The Platform

Built-in observability. Real-time metrics (P50/P95). Log tracing across all your edge functions.


Pre-built Modules

Don’t start from zero. Use our battle-hardened modules and extend them with your own logic.

Build with the Edge SDK

Write custom business logic using our powerful, unified SDK. Everything is pre-configured.

import { sdk } from '@aerostack/sdk';
 
export default async function(event) {
  // Database + Vector Search
  const results = await sdk.db.query(
    'SELECT * FROM products WHERE vector_search(embedding, ?)',
    [await sdk.ai.embed(event.body.query)]
  );
 
  // Global Caching
  await sdk.cache.set(`search:${event.body.query}`, results, { ttl: 60 });
 
  return { data: results };
}
Ready to upgrade your workflow?