272d05187e
Using PostgREST is an alternative to manual CRUD programming. Custom API servers suffer problems. Writing business logic often duplicates, ignores or hobbles database structure. Object-relational mapping is a leaky abstraction leading to slow imperative code. The PostgREST philosophy establishes a single declarative source of truth: the data itself. WWW: http://postgrest.org/en/v7.0.0/ PR: 246383 Submitted by: Dmitry Wagin
5 lines
232 B
Text
5 lines
232 B
Text
PostgREST is a standalone web server that turns your PostgreSQL database
|
|
directly into a RESTful API. The structural constraints and permissions
|
|
in the database determine the API endpoints and operations.
|
|
|
|
WWW: http://postgrest.org
|