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.
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.
One config file. Automated provisioning. Secure environments. The source of truth for your infrastructure.
One pattern for every primitive. sdk.db, sdk.cache, sdk.ai—all pre-wired and type-safe from day one.
Built-in observability. Real-time metrics (P50/P95). Log tracing across all your edge functions.
Don’t start from zero. Use our battle-hardened modules and extend them with your own logic.
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 };
}