Automatic REST API for PostgreSQL Databases implemented as AOT-Ready .NET8/.NET9 Middleware
If you have a PostgreSQL database - NpgsqlRest can create blazing fast REST API automatically and write client code for your project.
Features:
- Nuget package for .NET that creates discoverable REST API automatically from PostgreSQL database.
- High Performance. See Performances Benchmarks.
- Modular Design with a Plug-in System. Create API for functions and procedure, create CRUD endpoints for your tables, create HTTP files, and Typescript client code.
- AOT-Ready. Ahead-of-time compiled to the native code. No dependencies, native executable, it just runs and it's very fast.
- Customizable. Configure endpoints with powerful comment annotations. You can easily configure any endpoint by adding comment annotation labels to PostgreSQL Comments.
- Real-time Streaming. Server-sent events support with PostgreSQL
RAISE INFO
statements for live notifications. - Advanced Authentication. Role-based authorization with flexible scope control.
- Standalone Executable Web Client. Download the executable and run it. No installation required. See Releases.
The standalone client provides a production-ready REST API server with extensive configuration options:
- Authentication: Cookie auth, Bearer tokens, OAuth (Google, LinkedIn, GitHub, Microsoft, Facebook)
- Security: SSL/TLS, CORS, antiforgery tokens, data protection with configurable encryption
- File Operations: Static file serving with template parsing, file uploads (filesystem, PostgreSQL Large Objects, CSV/Excel processing)
- Performance: Response compression, configurable Kestrel limits, thread pool tuning
- Monitoring: Comprehensive logging (console, file, PostgreSQL), request tracking, connection analytics
- Code Generation: Auto-generated HTTP files and TypeScript/JavaScript clients
- CRUD Operations: Automatic table/view endpoints with customizable URL patterns
Simply download, configure via JSON, and deploy - no .NET installation required.
create function hello_world()
returns text
language sql
as $$
select 'Hello World'
$$;
var builder = WebApplication.CreateSlimBuilder(args);
var app = builder.Build();
var connectionStr = "Host=localhost;Port=5432;Database=my_db;Username=postgres;Password=postgres";
app.UseNpgsqlRest(new(connectionStr));
app.Run();
@host=http://localhost:5000
// function public.hello_world()
// returns text
POST {{host}}/api/hello-world/
const _baseUrl = "http://localhost:5000";
/**
* function public.get_latest_customer()
* returns customers
*
* @remarks
* GET /api/get-latest-customer
*
* @see FUNCTION public.get_latest_customer
*/
export async function getHelloWorld() : Promise<string> {
const response = await fetch(_baseUrl + "/api/hello-world", {
method: "GET",
headers: { "Content-Type": "application/json" },
});
return await response.text() as string;
}
HTTP/1.1 200 OK
Connection: close
Content-Type: text/plain
Date: Tue, 09 Jan 2024 14:25:26 GMT
Server: Kestrel
Transfer-Encoding: chunked
Hello World
Configure individual endpoints with powerful and simple routine comment annotations. You can use any PostgreSQL administration tool or a simple script to customize HTTP methods, paths, content types, authentication, real-time streaming, and client code generation.
Annotation | Example | Purpose |
---|---|---|
HTTP GET /path |
Custom endpoint path and method | |
Content-Type: text/html |
Response content type | |
authorize role1, role2 |
Role-based authorization | |
info_path /events |
Enable event streaming | |
tsclient = false |
Disable TypeScript client generation |
Custom HTTP Method and Path:
create function hello_world_html()
language sql
as
$$
select '<div>Hello World</div>';
$$
comment on function hello_world_html() is '
HTTP GET /hello
Content-Type: text/html';
Authentication and Authorization:
create function secure_data()
returns json
language sql
as $$
select '{"message": "Secret data"}'::json;
$$;
comment on function secure_data() is '
HTTP GET /api/secure
authorize admin, manager';
Real-time Event Streaming:
create function live_updates()
returns void
language plpgsql
as $$
begin
raise info 'Processing started...';
perform pg_sleep(2);
raise info 'Step 1 completed';
perform pg_sleep(2);
raise info 'All done!';
end;
$$;
comment on function live_updates() is '
HTTP POST /api/live-updates
info_path /events
info_scope all';
TypeScript Client Control:
create function admin_function()
returns text
language sql
as $$
select 'Admin data';
$$;
comment on function admin_function() is '
HTTP GET /admin/data
authorize admin
tsclient_events = true
tsclient_status_code = true';
You can also use the parameter format for complex configurations:
comment on function my_function() is '
method = GET
path = /custom/endpoint
content_type = application/json
authorize = admin, user
info_path = /stream
info_scope = matching
tsclient = true
tsclient_events = false';
Control message scope per individual RAISE INFO
statement:
create function detailed_process()
returns void
language plpgsql
as $$
begin
raise info 'Starting process...' using hint = 'all';
raise info 'Processing user data...' using hint = 'authorize admin';
raise info 'Process completed' using hint = 'self';
end;
$$;
Response will have content type text/html
:
Connection: close
Content-Type: text/html
Date: Thu, 18 Jan 2024 11:00:39 GMT
Server: Kestrel
Transfer-Encoding: chunked
<div>Hello World</div>
Install the package from NuGet by using any of the available methods:
dotnet add package NpgsqlRest --version 2.29.0
NuGet\Install-Package NpgsqlRest -version 2.29.0
<PackageReference Include="NpgsqlRest" Version="2.29.0" />
Your application builder code:
var app = builder.Build();
app.UseNpgsqlRest(new("Host=localhost;Port=5432;Database=my_db;Username=postgres;Password=postgres"));
app.Run();
For all available build options, see the options documentation.
- net9.0
- Microsoft.NET.Sdk.Web 9.0
- Npgsql 8.0.5
- PostgreSQL >= 13
Note: PostgreSQL 13 minimal version is required to run the initial query to get the list of functions. The source code of this query can be found here. For versions prior to version 13, this query can be replaced with a custom query that can run on older versions.
Contributions from the community are welcomed. Please make a pull request with a description if you wish to contribute.
This project is licensed under the terms of the MIT license.