Supabase

An open-source Firebase alternative: hosted Postgres with auth, storage and instant APIs.

my take

The fastest way to get a real database, auth and APIs without running a backend — and it is just Postgres underneath, so you are not locked into something proprietary. My default backend for AI-built apps.

Supabase gives you a full Postgres database with auto-generated REST and realtime APIs, authentication, file storage and edge functions — all open source and built on standard, portable tech. For someone who can build a frontend with AI but stalls at "now I need a backend", it removes that wall.

Start with this

js
import { createClient } from '@supabase/supabase-js';

const supabase = createClient(URL, ANON_KEY);

// read
const { data } = await supabase.from('tools').select('*');

// write
await supabase.from('tools').insert({ name: 'anime.js', price: 'free' });

The take, for AI builders

This pairs unusually well with AI coding: because it is plain Postgres with a clean JS client, agents generate correct queries and schema migrations reliably. Let it own auth and data so you can stay in the frontend. One honest caveat — read up on Row Level Security before you ship, because the easy path leaves tables open by default.

When to reach for it

✓ Good fit

  • You need a real relational database, auth and APIs without managing servers
  • You value not being locked in (it is just Postgres you can take elsewhere)
  • AI-assisted projects where you want the agent to own the data layer

✕ Not for

  • Ultra-simple sites that need no backend at all
  • You require a document / NoSQL model that doesn't map cleanly to SQL

Alternatives

  • More mature realtime and mobile SDKs, but proprietary and document-based.

  • Reactive, TypeScript-native backend if you prefer functions over SQL.

Visit Supabase

Related in Backend & data

Backend & data

Algolia

A hosted search API delivering fast, typo-tolerant, relevant search-as-you-type.

Freemium
  • search
  • api
  • hosted
take

Search that feels instant and forgives typos, as a hosted API — the gold standard for site and app search. Brilliant DX; costs climb with scale, so watch the meter.

Visit ↗
Backend & data

Appwrite

An open-source backend platform with auth, databases, storage, functions and realtime, self-hosted or cloud.

Freemium
  • baas
  • open-source
  • self-hostable
take

An open-source Firebase alternative with auth, databases, storage, functions and realtime. The pick when you want Firebase's breadth without the lock-in.

Visit ↗
Backend & data

Auth0

An identity-as-a-service platform (an Okta company) with authentication, SSO and MFA for applications.

Freemium
  • auth
  • identity
  • enterprise
take

The enterprise identity standard — social, SSO, MFA, the lot. Rock-solid and feature-deep; pricing climbs steeply once you need enterprise connections.

Visit ↗