Centia.io – 开发者开放的PostgreSQL/PostGIS后端
Show HN: Centia.io – Open PostgreSQL/PostGIS back end for developers

原始链接: https://centia.io/

Centia.io 提供了一个 PostgreSQL/PostGIS 后端,专为需要完全数据控制的开发者设计。它提供了一个安全且可扩展的 SQL API,可通过 HTTP 或 WebSocket 访问,允许标准的 SQL 查询(SELECT、INSERT、UPDATE、DELETE),并内置 OAuth2 和行级安全等功能。 数据交互通过 JSON-RPC 方法进行,提供数据格式化的灵活性。Centia.io 优先考虑开发者体验,提供清晰的 OpenAPI 模式、直观的 SDK 和用于数据管理的 CLI。 本质上,它是一个健壮、开发者友好的解决方案,用于通过现代 API 访问和操作 PostgreSQL 数据,强调安全性和易用性。文档、社区论坛和支持等资源随时可用。

Centia.io 是一个全新的开源后端即服务 (BaaS),基于 PostgreSQL 和 PostGIS 构建,旨在简化开发。它提供即时 API 和实时更新,并且可以通过 Docker 轻松自托管。 创建者 mhoegh 将 Centia.io 定位为直接针对 Postgres 编写后端代码的替代方案,类似于 PostgREST 和 Pocketbase 等项目(但使用 Postgres 作为存储)。一个关键优势是绕过 Postgres 原生的“线路协议”,提供更友好的开发者体验。 讨论强调了它与 pgBouncer 等连接池的兼容性——推荐用于生产环境,以及各种托管 Postgres 服务。该项目正在积极寻求 Hacker News 社区的反馈。最后,帖子还提醒了 Y Combinator 2026 年冬季申请期限。
相关文章

原文

Centia.io

PostgreSQL/PostGIS backend for developers who love control

Query your data over HTTP or WebSocket

Use the SQL endpoint or WebSocket to select, insert, update, and delete. Secure by default with OAuth2 and row-level security.

{

"q": "select id, name from rockhall where name = :name",

"params": { "name": "Red Hot Chili Peppers" },

"output_format": "json"

"id": "1"

}

Wrap your SQL statements inside JSON-RPC methods

Create JSON-RPC methods along with optional instructions on how to interpret and format the data types.

{

"jsonrpc": "2.0",

"method": "getFromRockHall",

"params": { "name": "Red Hot Chili Peppers" },

"id": 1

}

SQL APIStylized database cylinder with API brackets

Instant SQL API

Backed by Postgres and exposes a secure, scalable SQL-over-HTTP.

SecurityShield with lock icon

Secure by default

OAuth2, row-level security, and rate limiting baked in — ship with confidence.

Developer FriendlyCode brackets and a small gear

Built for developers

Clean OpenAPI schema, intuitive SDKs, and a friendly CLI to manage your data.

联系我们 contact @ memedata.com