Supabase: Postgres development platform with built-in APIs
PostgreSQL backend with auto-generated APIs and real-time subscriptions.
Learn more about Supabase
Supabase is a backend-as-a-service platform centered on PostgreSQL that exposes database functionality through multiple API layers. The architecture combines several open source components: PostgreSQL for data storage, PostgREST for REST API generation, a custom GraphQL extension for GraphQL support, Realtime (an Elixir server) for WebSocket-based subscriptions, and GoTrue for JWT-based authentication. It can be deployed as a managed hosted service or self-hosted using Docker and local development tools. Common deployment contexts include web applications, mobile backends, and AI applications requiring vector storage through pgvector.

Open source component stack
Built from modular open source tools (PostgreSQL, PostgREST, GoTrue, Realtime) rather than proprietary software, allowing developers to understand and modify underlying implementations. Each component maintains its own repository and can be used independently.
Multiple API protocols
Automatically generates REST, GraphQL, and real-time WebSocket APIs from the same PostgreSQL schema without requiring separate API definitions. Developers can query data through their preferred protocol without duplicating business logic.
Self-hosting and local development
Supports both managed hosting and self-hosted deployments through Docker, plus local development environments. Organizations can run identical infrastructure locally for development and testing before deploying to production.
import { createClient } from '@supabase/supabase-js'
const supabase = createClient('https://your-project.supabase.co', 'your-anon-key')
const { data, error } = await supabase
.from('users')
.select('id, name, email')
.eq('status', 'active')
if (error) console.error(error)
else console.log(data)See how people are using Supabase
Top in Backend & APIs
Related Repositories
Discover similar tools and frameworks used by developers
chi
Composable Go HTTP router for web services with middleware chains and route groups.
Magento 2
Modular PHP platform for self-hosted ecommerce storefronts.
PHPMailer
SMTP client and MIME message builder for PHP.
Discourse
Self-hostable forum platform with Ruby on Rails, real-time chat, and plugin support.
Node.js
JavaScript runtime built on V8 for server-side development.
Related Reading
Guides and comparisons from the Greptile content library
Greptile Ranks #1 on Martian's AI Code Review Benchmark
Greptile ranks #1 on Martian's independent online AI code review benchmark, leading all evaluated tools in F1 score and precision with near-leading recall.
What is agentic coding? Benefits, risks, and best tools to consider
What engineering leaders need to know about agentic coding: how it differs from AI coding and vibe coding, how it works, the benefits and risks, and the tools worth evaluating.
Best Code Review Tools in 2026
The best code review tools in 2026, compared on pricing, features, deployment options, and ideal use cases for teams of any size.
10 Powerful Code Quality Tools That Catch Bugs Before Deployment
We tested 10 code quality tools that catch bugs before production. Detailed comparison with real-world examples, pricing, and ROI analysis for dev teams.