The open-source Postgres dev platform. Database, Auth, Storage, Edge Functions, Realtime, and GPU compute — all in one cozy place, at a fraction of the cost.
Every project gets a full PostgreSQL 16 database. 100% portable, battle-tested, infinitely extensible.
Production-ready auth in minutes. Email, OAuth, magic links, phone — all secured with JWT + RLS.
Serverless Deno functions deployed globally. No cold starts. NPM compatible.
S3-compatible object storage with a built-in CDN. Store images, videos, and files at scale.
Build multiplayer apps, live dashboards, and collaborative tools with WebSocket-powered pub/sub.
Rent dedicated GPU compute and private Docker sandboxes. Build, test, and deploy AI models.
import { createClient } from '@alpacacloud/js' const alp = createClient( 'https://your-project.alpaca-cloud.com', 'your-anon-key' ) // Query your database const { data, error } = await alp .from('posts') .select('id, title, author(name)') .eq('published', true) .order('created_at', { ascending: false }) .limit(10)