The open source Firebase alternative.
Find a file
Charis 472ef2d062
fix(studio): invalidate table editor menu on assistant mutations (#41989)
The queries used for the Table Editor menu aren't invalidated when the
Assistant executes SQL, so newly created views/tables and fresh lints
aren't shown. Now adds invalidations whenever a write query is run from
the Assistant interface.
2026-01-19 13:20:09 -05:00
.cursor/rules chore: form patterns cursor rules (#41225) 2025-12-11 18:03:30 +01:00
.github docs: Add documentation label to troubleshooting sync workflow (#41939) 2026-01-16 15:24:25 +07:00
apps fix(studio): invalidate table editor menu on assistant mutations (#41989) 2026-01-19 13:20:09 -05:00
blocks/vue chore: Use @/* as an alias for importing in-package files (#41607) 2025-12-30 17:46:24 +01:00
docker chore: update changelog and image versions file (#41468) 2025-12-19 17:11:12 +08:00
e2e/studio fix: settings for storage to not show up on self hosted as they are not supported (#41936) 2026-01-19 09:16:49 -07:00
examples docs: fix typo in edge-functions.md (#41853) 2026-01-14 06:45:05 +00:00
i18n chore: update readme js sdk links (#41198) 2025-12-16 14:42:22 +02:00
packages Add read replicas details page from database replication (#41784) 2026-01-19 13:44:41 +08:00
scripts fix: Fix the schema for the Vercel info in authorizeVercelDeploys.ts (#41797) 2026-01-08 17:01:32 +01:00
supa-mdx-lint feat(docs): update-ai-prompts (#40344) 2026-01-19 01:05:40 +00:00
supabase fix: correct typos across codebase (#41038) 2026-01-15 05:15:18 +00:00
.cursorignore docs: remote MCP UI paper cut improvements (#39211) 2025-10-06 18:57:41 -04:00
.dockerignore chore: move specs to docs folder (#20136) 2024-01-03 18:54:23 +01:00
.gitignore chore: ignore claude folder (#40606) 2025-11-19 07:40:35 +00:00
.misspell-fixer.ignore chore: fix mispellings (#27793) 2024-07-04 09:37:18 +02:00
.npmrc Use relative paths in File editor and support existing entrypoint, import map settings (#34553) 2025-03-31 15:23:12 +08:00
.nvmrc chore: Bump nodejs to v22 (#34730) 2025-06-17 11:08:46 +02:00
.prettierignore feat: Preliminary work for shadcn add @supabase/...block... (#39322) 2025-10-07 20:32:24 +02:00
.prettierrc chore: Downgrade prettier to v3 (#31099) 2024-12-19 11:02:23 +01:00
CONTRIBUTING.md Fix Links in CONTRIBUTING.md (#22806) 2024-04-17 06:06:08 +00:00
DEVELOPERS.md docs: Fix broken urls (#40457) 2025-11-28 08:58:11 +00:00
knip.jsonc chore: Remove unused code from ui-library (#38374) 2025-09-02 15:36:41 +02:00
LICENSE Update LICENSE (#20227) 2024-01-10 13:34:41 +01:00
Makefile fetch all contributors 2021-07-25 12:45:26 +08:00
package.json feat: Add GH workflow for authorizing Vercel deploys (#41717) 2026-01-08 12:11:05 +01:00
pnpm-lock.yaml fix: update cobe version to reduce lag on /career and remove height/width assignment per frame (#40908) 2026-01-19 16:14:25 +00:00
pnpm-workspace.yaml chore: Bump vulnerable dependencies (#41562) 2025-12-24 08:31:59 +01:00
README.md chore: update readme js sdk links (#41198) 2025-12-16 14:42:22 +02:00
SECURITY.md Fix path to security.txt 2023-03-11 19:47:56 +01:00
supa-mdx-lint.config.toml chore: replace all supabase urls with relative urls (#38537) 2025-09-09 12:54:33 +00:00
tsconfig.json chore: add new icons. new card component 2022-08-12 09:09:02 -03:00
turbo.json feat: SQL Snippets (#41112) 2025-12-23 12:09:37 +01:00

Supabase

Supabase is the Postgres development platform. We're building the features of Firebase using enterprise-grade open source tools.

  • Hosted Postgres Database. Docs
  • Authentication and Authorization. Docs
  • Auto-generated APIs.
  • Functions.
    • Database Functions. Docs
    • Edge Functions Docs
  • File Storage. Docs
  • AI + Vector/Embeddings Toolkit. Docs
  • Dashboard

Supabase Dashboard

Watch "releases" of this repo to get notified of major updates.

Watch this repo

Documentation

For full documentation, visit supabase.com/docs

To see how to Contribute, visit Getting Started

Community & Support

  • Community Forum. Best for: help with building, discussion about database best practices.
  • GitHub Issues. Best for: bugs and errors you encounter using Supabase.
  • Email Support. Best for: problems with your database or infrastructure.
  • Discord. Best for: sharing your applications and hanging out with the community.

How it works

Supabase is a combination of open source tools. Were building the features of Firebase using enterprise-grade, open source products. If the tools and communities exist, with an MIT, Apache 2, or equivalent open license, we will use and support that tool. If the tool doesn't exist, we build and open source it ourselves. Supabase is not a 1-to-1 mapping of Firebase. Our aim is to give developers a Firebase-like developer experience using open source tools.

Architecture

Supabase is a hosted platform. You can sign up and start using Supabase without installing anything. You can also self-host and develop locally.

Architecture

  • Postgres is an object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.
  • Realtime is an Elixir server that allows you to listen to PostgreSQL inserts, updates, and deletes using websockets. Realtime polls Postgres' built-in replication functionality for database changes, converts changes to JSON, then broadcasts the JSON over websockets to authorized clients.
  • PostgREST is a web server that turns your PostgreSQL database directly into a RESTful API.
  • GoTrue is a JWT-based authentication API that simplifies user sign-ups, logins, and session management in your applications.
  • Storage a RESTful API for managing files in S3, with Postgres handling permissions.
  • pg_graphql a PostgreSQL extension that exposes a GraphQL API.
  • postgres-meta is a RESTful API for managing your Postgres, allowing you to fetch tables, add roles, and run queries, etc.
  • Kong is a cloud-native API gateway.

Client libraries

Our approach for client libraries is modular. Each sub-library is a standalone implementation for a single external system. This is one of the ways we support existing tools.

Language Client Feature-Clients (bundled in Supabase client)
Supabase PostgREST GoTrue Realtime Storage Functions
Official
JavaScript (TypeScript) supabase-js postgrest-js auth-js realtime-js storage-js functions-js
Flutter supabase-flutter postgrest-dart gotrue-dart realtime-dart storage-dart functions-dart
Swift supabase-swift postgrest-swift auth-swift realtime-swift storage-swift functions-swift
Python supabase-py postgrest-py gotrue-py realtime-py storage-py functions-py
💚 Community 💚
C# supabase-csharp postgrest-csharp gotrue-csharp realtime-csharp storage-csharp functions-csharp
Go - postgrest-go gotrue-go - storage-go functions-go
Java - - gotrue-java - storage-java -
Kotlin supabase-kt postgrest-kt auth-kt realtime-kt storage-kt functions-kt
Ruby supabase-rb postgrest-rb - - - -
Rust - postgrest-rs - - - -
Godot Engine (GDScript) supabase-gdscript - - - - -

Badges

Made with Supabase

[![Made with Supabase](https://supabase.com/badge-made-with-supabase.svg)](https://supabase.com)
<a href="https://supabase.com">
  <img
    width="168"
    height="30"
    src="https://supabase.com/badge-made-with-supabase.svg"
    alt="Made with Supabase"
  />
</a>

Made with Supabase (dark)

[![Made with Supabase](https://supabase.com/badge-made-with-supabase-dark.svg)](https://supabase.com)
<a href="https://supabase.com">
  <img
    width="168"
    height="30"
    src="https://supabase.com/badge-made-with-supabase-dark.svg"
    alt="Made with Supabase"
  />
</a>

Translations