Backend-as-a-Service
Database, Storage, Realtime, Auth, Billing, AI, Vectors, and Plugins. The Firebase and Supabase alternative built on Cloudflare.
Database
SQL and document storage with real-time sync.
Storage
File storage with CDN, transforms, and access control.
Realtime
WebSocket subscriptions and presence tracking.
Auth
Email, OAuth, magic links, and MFA.
Billing
Subscriptions, metered billing, and invoices.
AI
Built-in AI inference and embeddings.
Vectors
Vector storage and similarity search.
Plugins
Extensible plugin system for custom features.
Quick Start
Database
// Query the database
const users = await appedge.db.query('users')
.where('plan', '==', 'pro')
.orderBy('createdAt', 'desc')
.limit(10);Authentication
// Authenticate users
const session = await appedge.auth.signIn({
email: 'user@example.com',
password: 'secure123'
});
// JWT token with role-based accessRealtime
// Real-time subscriptions
appedge.realtime.subscribe('messages', {
filter: { roomId: 'room_123' },
onData: (msg) => console.log('New message:', msg)
});Your entire backend, one SDK
Start free. No credit card required.
View Pricing