Supabase Studio 2.0

Build in a weekend.
Scale to millions.

Supabase is an open source Firebase alternative. Start your project with a Postgres database, Authentication, instant APIs, Edge Functions, Realtime subscriptions, Storage, and Vector embeddings.

index.js
import { createClient } from '@supabase/supabase-js'

// Initialize the client
const supabaseUrl = 'https://xyzcompany.supabase.co'
const supabaseKey = 'public-anon-key'
const supabase = createClient(supabaseUrl, supabaseKey)

// Read data
const { data, error } = await supabase
  .from('countries')
  .select('*')

Infrastructure to build your back-end

Database

Every project is a full Postgres database, the world's most trusted relational database.

Authentication

Add user sign ups and logins, securing your data with Row Level Security.

Edge Functions

Easily write custom code without deploying or scaling servers.