postgrest

REST API for any Postgres database

Github星跟踪图

Logo

Donate
Donate



Join the chat at https://gitter.im/begriffs/postgrest
Docs
Docker Stars
Build Status
Hackage docs

PostgREST serves a fully RESTful API from any existing PostgreSQL
database. It provides a cleaner, more standards-compliant, faster
API than you are likely to write from scratch.

Sponsors

Big thanks to our sponsors! You can join them by supporting PostgREST on Patreon.

Usage

  1. Download the binary (latest release)
    for your platform.

  2. Invoke for help:

    postgrest --help
    

Documentation

Latest documentation is at postgrest.org. You can contribute to the docs in PostgREST/postgrest-docs.

Performance

TLDR; subsecond response times for up to 2000 requests/sec on Heroku
free tier. If you're used to servers written in interpreted languages,
prepare to be pleasantly surprised by PostgREST performance.

Three factors contribute to the speed. First the server is written
in Haskell using the
Warp
HTTP server (aka a compiled language with lightweight threads).
Next it delegates as much calculation as possible to the database
including

  • Serializing JSON responses directly in SQL
  • Data validation
  • Authorization
  • Combined row counting and retrieval
  • Data post in single command (returning *)

Finally it uses the database efficiently with the
Hasql library
by

  • Keeping a pool of db connections
  • Using the PostgreSQL binary protocol
  • Being stateless to allow horizontal scaling

Security

PostgREST handles
authentication
(via JSON Web
Tokens) and delegates authorization to the role information defined in
the database. This ensures there is a single declarative source of truth
for security. When dealing with the database the server assumes the
identity of the currently authenticated user, and for the duration of
the connection cannot do anything the user themselves couldn't. Other
forms of authentication can be built on top of the JWT primitive. See
the docs for more information.

PostgreSQL 9.5 supports true row-level
security
.
In previous versions it can be simulated with triggers and
security-barrier views. Because the possible queries to the database
are limited to certain templates using
leakproof
functions, the trigger workaround does not compromise row-level
security.

Versioning

A robust long-lived API needs the freedom to exist in multiple
versions. PostgREST does versioning through database schemas. This
allows you to expose tables and views without making the app brittle.
Underlying tables can be superseded and hidden behind public facing
views.

Self-documentation

PostgREST uses the OpenAPI standard to
generate up-to-date documentation for APIs. You can use a tool like
Swagger-UI to render
interactive documentation for demo requests against the live API server.

This project uses HTTP to communicate other metadata as well. For
instance the number of rows returned by an endpoint is reported by -
and limited with - range headers. More about
that.

Data Integrity

Rather than relying on an Object Relational Mapper and custom
imperative coding, this system requires you put declarative constraints
directly into your database. Hence no application can corrupt your
data (including your API server).

The PostgREST exposes HTTP interface with safeguards to prevent
surprises, such as enforcing idempotent PUT requests.

See examples of PostgreSQL
constraints

and the API guide.

Supporting development

You can help PostgREST ongoing maintenance and development by:

Every donation will be spent on making PostgREST better for the whole community.

Thanks

The PostgREST organization is grateful to:

  • The project sponsors and backers who support PostgREST's development.
  • The project contributors who have improved PostgREST immensely with their code
    and good judgement. See more details in the changelog.

The cool logo came from Mikey Casalaina.

主要指标

概览
名称与所有者PostgREST/postgrest
主编程语言Haskell
编程语言Haskell (语言数: 6)
平台
许可证MIT License
所有者活动
创建于2014-06-13 00:23:00
推送于2025-04-20 21:33:36
最后一次提交
发布数71
最新版本名称devel (发布于 )
第一版名称v0.1.0.0 (发布于 2014-10-10 11:58:27)
用户参与
星数25.2k
关注者数333
派生数1.1k
提交数4k
已启用问题?
问题数1821
打开的问题数271
拉请求数1480
打开的拉请求数44
关闭的拉请求数220
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?