@sunmer575399: supabase这个项目火了,109.4k star不是没道理 直接给你一个托管的Postgres数据库,不用自己装环境配主从。我上周新项目从注册到拿到连接串不到3分钟,以前折腾服务器得半天,这效率差是真的大 认证、REST、GraphQ…

X AI KOLs Timeline 工具

摘要

Supabase 是一个开源的 Postgres 开发平台,提供托管数据库、自动 API 生成、认证和 AI 工具,因其高效和全面性在 GitHub 上获得超过 109k 星。

supabase这个项目火了,109.4k star不是没道理 1️⃣ 直接给你一个托管的Postgres数据库,不用自己装环境配主从。我上周新项目从注册到拿到连接串不到3分钟,以前折腾服务器得半天,这效率差是真的大 2️⃣ 认证、REST、GraphQL、实时订阅全给你自动生成好了。你建张表,API和鉴权就有了,前端直接调,不用再手写一堆CRUD接口,省下的时间够你多睡两觉 3️⃣ 内置AI和向量Embeddings工具,RAG那套不用自己拼。文档存进去就能做语义检索,跟搭积木一样,比你自己拼pgvector+接口省事多了,实测能少写几百行胶水代码 有技术基础的可以二次开发,小白照着文档跑也行。 这类项目通常是大厂内部把工作流跑通后才开源的,相当于白捡一套企业级基建经验。 同样功能商业SaaS一个月收你几十刀,这个直接开源可商用,接私活报价能压一半还稳赚。 唯一的坑是文档虽然全,但报错信息写得跟谜语一样,新手遇到问题得去社区翻半天。 你们现在做后端是继续自己搭Postgres,还是直接用这种全家桶? 🔗 https://github.com/supabase/supabase… #开源 #GitHub
查看原文
查看缓存全文

缓存时间: 2026/09/19 02:57

supabase这个项目火了,109.4k star不是没道理

1️⃣ 直接给你一个托管的Postgres数据库,不用自己装环境配主从。我上周新项目从注册到拿到连接串不到3分钟,以前折腾服务器得半天,这效率差是真的大

2️⃣ 认证、REST、GraphQL、实时订阅全给你自动生成好了。你建张表,API和鉴权就有了,前端直接调,不用再手写一堆CRUD接口,省下的时间够你多睡两觉

3️⃣ 内置AI和向量Embeddings工具,RAG那套不用自己拼。文档存进去就能做语义检索,跟搭积木一样,比你自己拼pgvector+接口省事多了,实测能少写几百行胶水代码

有技术基础的可以二次开发,小白照着文档跑也行。 这类项目通常是大厂内部把工作流跑通后才开源的,相当于白捡一套企业级基建经验。 同样功能商业SaaS一个月收你几十刀,这个直接开源可商用,接私活报价能压一半还稳赚。 唯一的坑是文档虽然全,但报错信息写得跟谜语一样,新手遇到问题得去社区翻半天。 你们现在做后端是继续自己搭Postgres,还是直接用这种全家桶?

🔗 https://github.com/supabase/supabase…

#开源 #GitHub


supabase/supabase

Source: https://github.com/supabase/supabase

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. We’re 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.
  • Envoy is a cloud-native, high-performance edge and service proxy.

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 supabase_auth supabase_realtime supabase_storage supabase_functions
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

相似文章

supabase/supabase

GitHub Trending (daily)

Supabase 是一个基于 PostgreSQL 的开源 Firebase 替代方案,提供托管数据库、认证、自动生成的API、实时订阅、函数、文件存储以及AI/向量工具。

@LinxFocus: 这是目前 Github 上最火的免费项目宝藏库,有着夸张的 303K 星标数, 从网盘到聊天工具,从博客到邮箱服务,从电商平台到游戏开发,所有软件都支持在自己的服务器上部署托管,数据完全掌控,非常值得收藏 汇集了143 个分类的 1497…

X AI KOLs Timeline

推荐一个GitHub上拥有303K星标的免费项目宝藏库,包含143个分类、1497个企业级品质的自托管开源项目,涵盖网盘、聊天工具、博客、邮箱、电商、游戏开发等。