Client Application
Edit this page on GitHubDownload
The client application is available for download from the latest GitHub release page.
There are three files available for download:
appsettings.json
: The default configuration file. See the default configuration file.npgsqlrest-linux64
: Linux64 build. This is a self-contained ahead-of-time (AOT) compiled to native code executable for the Linux 64x systems.npgsqlrest-win64.exe
: Windows64 build. This is a self-contained ahead-of-time (AOT) compiled to native code executable for the Windows 64x systems.
NPM
Installation is possible via the NPM package manager:
npm install npgsqlrest --save-dev
npm install npgsqlrest --save-dev
The NPM package will download on installation the appropriate executable binary for your target operating system. The command will be available with the NPX runner:
$ npx npgsqlrest [arguments]
$ npx npgsqlrest [arguments]
See usage for more info.
Custom Builds
The client application was built from the NpgsqlRestClient
project directory.
To create a custom build follow these steps:
- Make sure that you have .NET8 SDK installed and ready.
- Clone NpgsqlRest repository
- Navigate to the
NpgsqlRestClient
project directory. - Make your desired customizations (or not).
- Run publish command, for example,
dotnet publish -r win-x64 -c Release --output [target dir]
Notes: win-x64
is the designated target OS for the build. Adjust this parameter appropriately for the target OS. See https://learn.microsoft.com/en-us/dotnet/core/rid-catalog#known-rids. The project is already configured for the AOT builds, but you will need to run the publish command from the same flavor OS as the build target OS (Windows for Windows builds, Linux for Linux builds, etc).
MacOS Builds
The Mac OS builds are missing because I don't have a Mac machine. If someone could help me out with this I'd be grateful.
Features
- Create an Automatic REST API for the PostgreSQL Databases.
- Generate TypeScript Code and HTTP files for testing.
- Configure security for use the of either encrypted cookies or JWT Bearer tokens or both.
- Expose REST API endpoints for the PostgreSQL Databases as Login/Logout.
- Use external authentication providers such as Google, LinkedIn or GitHub.
- Server static content.
- Use and configure built-in Serilog structured logging.
- Configure Cross-origin resource sharing (CORS) access, SSL, Server Certificates and more, everything needed for modern Web development.
See the default configuration file with descriptions for more information.
Usage
❯ npgsqlrest --help
Usage:
npgsqlrest Run with the optional default configuration files: appsettings.json and
appsettings.Development.json. If these file are not found, default
configuration setting is used (see
https://vb-consulting.github.io/npgsqlrest/config/).
npgsqlrest [files...] Run with the custom configuration files. All configuration files are required.
Any configuration values will override default values in order of appearance.
npgsqlrest [file1 -o file2...] Use the -o switch to mark the next configuration file as optional. The first
file after the -o switch is optional.
npgsqlrest [file1 --optional file2...] Use --optional switch to mark the next configuration file as optional. The
first file after the --optional switch is optional.
Note: Values in the later file will override the values in the previous one.
npgsqlrest [--key=value] Override the configuration with this key with a new value (case insensitive,
use : to separate sections).
npgsqlrest -v, --version Show version information.
npgsqlrest -h, --help Show command line help.
Examples:
Example: use two config files npgsqlrest appsettings.json appsettings.Development.json
Example: second config file optional npgsqlrest appsettings.json -o appsettings.Development.json
Example: override ApplicationName config npgsqlrest --applicationname=Test
Example: override Auth:CookieName config npgsqlrest --auth:cookiename=Test
❯ npgsqlrest --help
Usage:
npgsqlrest Run with the optional default configuration files: appsettings.json and
appsettings.Development.json. If these file are not found, default
configuration setting is used (see
https://vb-consulting.github.io/npgsqlrest/config/).
npgsqlrest [files...] Run with the custom configuration files. All configuration files are required.
Any configuration values will override default values in order of appearance.
npgsqlrest [file1 -o file2...] Use the -o switch to mark the next configuration file as optional. The first
file after the -o switch is optional.
npgsqlrest [file1 --optional file2...] Use --optional switch to mark the next configuration file as optional. The
first file after the --optional switch is optional.
Note: Values in the later file will override the values in the previous one.
npgsqlrest [--key=value] Override the configuration with this key with a new value (case insensitive,
use : to separate sections).
npgsqlrest -v, --version Show version information.
npgsqlrest -h, --help Show command line help.
Examples:
Example: use two config files npgsqlrest appsettings.json appsettings.Development.json
Example: second config file optional npgsqlrest appsettings.json -o appsettings.Development.json
Example: override ApplicationName config npgsqlrest --applicationname=Test
Example: override Auth:CookieName config npgsqlrest --auth:cookiename=Test
Changelog
2.4.0
Versions:
.NET 9.0.0
Client Build 2.4.0.0
Serilog.AspNetCore 8.0.3.0
Npgsql 9.0.1.0
NpgsqlRest 2.13.1.0
NpgsqlRest.HttpFiles 1.1.0.0
NpgsqlRest.TsClient 1.15.0.0
Versions:
.NET 9.0.0
Client Build 2.4.0.0
Serilog.AspNetCore 8.0.3.0
Npgsql 9.0.1.0
NpgsqlRest 2.13.1.0
NpgsqlRest.HttpFiles 1.1.0.0
NpgsqlRest.TsClient 1.15.0.0
- New version Npgsql 9.0.1
- New "ClientCodeGen" "UniqueModels" option:
{
//...
"NpgsqlRest": {
//
// Enable or disable the generation of TypeScript/Javascript client source code files for NpgsqlRest endpoints.
//
"ClientCodeGen": {
//...
//
// Keep TypeScript models unique, meaning, models will same fields and types will be merged into one model with name of the last model. Significantly reduces number of generated models.
//
"UniqueModels": false
}
}
{
//...
"NpgsqlRest": {
//
// Enable or disable the generation of TypeScript/Javascript client source code files for NpgsqlRest endpoints.
//
"ClientCodeGen": {
//...
//
// Keep TypeScript models unique, meaning, models will same fields and types will be merged into one model with name of the last model. Significantly reduces number of generated models.
//
"UniqueModels": false
}
}
- New ResponseCompression options:
{
//...
//
// Response compression settings
//
"ResponseCompression": {
"Enabled": false,
"EnableForHttps": false,
"UseBrotli": true,
"UseGzipFallback": true,
"CompressionLevel": "Optimal", // Optimal, Fastest, NoCompression, SmallestSize
"IncludeMimeTypes": [
"text/plain",
"text/css",
"application/javascript",
"text/html",
"application/xml",
"text/xml",
"application/json",
"text/json",
"image/svg+xml",
"font/woff",
"font/woff2",
"application/font-woff",
"application/font-woff2"
],
"ExcludeMimeTypes": []
},
//...
{
//...
//
// Response compression settings
//
"ResponseCompression": {
"Enabled": false,
"EnableForHttps": false,
"UseBrotli": true,
"UseGzipFallback": true,
"CompressionLevel": "Optimal", // Optimal, Fastest, NoCompression, SmallestSize
"IncludeMimeTypes": [
"text/plain",
"text/css",
"application/javascript",
"text/html",
"application/xml",
"text/xml",
"application/json",
"text/json",
"image/svg+xml",
"font/woff",
"font/woff2",
"application/font-woff",
"application/font-woff2"
],
"ExcludeMimeTypes": []
},
//...
2.3.0
Versions:
.NET 9.0.0
Client Build 2.3.0.0
Serilog.AspNetCore 8.0.3.0
Npgsql 8.0.5.0
NpgsqlRest 2.13.0.0
NpgsqlRest.HttpFiles 1.1.0.0
NpgsqlRest.TsClient 1.14.0.0
Versions:
.NET 9.0.0
Client Build 2.3.0.0
Serilog.AspNetCore 8.0.3.0
Npgsql 8.0.5.0
NpgsqlRest 2.13.0.0
NpgsqlRest.HttpFiles 1.1.0.0
NpgsqlRest.TsClient 1.14.0.0
- Fixed SSL unnecessary redirection warnings when SSL is not used.
2.2.1
Versions:
.NET 8.0.10
Client Build 2.2.1.0
Serilog.AspNetCore 8.0.3.0
Npgsql 8.0.5.0
NpgsqlRest 2.12.1.0
NpgsqlRest.HttpFiles 1.0.2.0
NpgsqlRest.TsClient 1.13.0.0
Versions:
.NET 8.0.10
Client Build 2.2.1.0
Serilog.AspNetCore 8.0.3.0
Npgsql 8.0.5.0
NpgsqlRest 2.12.1.0
NpgsqlRest.HttpFiles 1.0.2.0
NpgsqlRest.TsClient 1.13.0.0
Client changes:
Fixed issue in overrding Log config section MinimalLevels. Log MinimalLevels are now:
- System: Warning
- Microsoft: Warning
In previous versions this default wasn't initialized properly that could lead to over-logging.
2.2.0
Versions:
.NET 8.0.10
Client Build 2.2.0.0
Serilog.AspNetCore 8.0.3.0
Npgsql 8.0.5.0
NpgsqlRest 2.12.0.0
NpgsqlRest.HttpFiles 1.0.2.0
NpgsqlRest.TsClient 1.13.0.0
Versions:
.NET 8.0.10
Client Build 2.2.0.0
Serilog.AspNetCore 8.0.3.0
Npgsql 8.0.5.0
NpgsqlRest 2.12.0.0
NpgsqlRest.HttpFiles 1.0.2.0
NpgsqlRest.TsClient 1.13.0.0
Client changes:
- New Configuration Section:
/*
2.2.0.0
*/
{
//
// https://vb-consulting.github.io/npgsqlrest/
//
"NpgsqlRest": {
//
// ...
//
//
// Options for handling PostgreSQL routines (functions and procedures)
//
"RoutineOptions": {
//
// Name separator for parameter names when using custom type parameters.
// Parameter names will be in the format: {ParameterName}{CustomTypeParameterSeparator}{CustomTypeFieldName}. When NULL, default underscore is used.
//
"CustomTypeParameterSeparator": null,
//
// List of PostgreSQL routine language names to include. If NULL, all languages are included. Names are case-insensitive.
//
"IncludeLanguagues": null,
//
// List of PostgreSQL routine language names to exclude. If NULL, "C" and "INTERNAL" are excluded by default. Names are case-insensitive.
//
"ExcludeLanguagues": null
},
}
}
/*
2.2.0.0
*/
{
//
// https://vb-consulting.github.io/npgsqlrest/
//
"NpgsqlRest": {
//
// ...
//
//
// Options for handling PostgreSQL routines (functions and procedures)
//
"RoutineOptions": {
//
// Name separator for parameter names when using custom type parameters.
// Parameter names will be in the format: {ParameterName}{CustomTypeParameterSeparator}{CustomTypeFieldName}. When NULL, default underscore is used.
//
"CustomTypeParameterSeparator": null,
//
// List of PostgreSQL routine language names to include. If NULL, all languages are included. Names are case-insensitive.
//
"IncludeLanguagues": null,
//
// List of PostgreSQL routine language names to exclude. If NULL, "C" and "INTERNAL" are excluded by default. Names are case-insensitive.
//
"ExcludeLanguagues": null
},
}
}
TsClient
configuration section is renamed toClientCodeGen
.
Reason is the new configuration key in this section "SkipTypes": false
that allows for generation of the pure JavaSCript modules by ommiting type declarations. And now this section can generate either TypeScript or JavaScript which is client code.
2.1.0
- NpgsqlRest version 2.11.0.0
- NpgsqlRest.TsClient 1.10.0.0
- Changed the default configuration value for the
CommentsMode
. For now on, default value for this option is more restrictiveOnlyWithHttpTag
instead of previouslyParseAll
.
2.0.0
Big changes:
Removed
CrudSource
plugin from build. I'm not using it and I'm against this approach completely where you access tables directly. This plugin module still exists you can always create your own build if you need it, I don't. Consecvently, entire config sectionCrudSource
ir removed, andRoutinesSource
as well.RoutinesSource
is configured in the mainNpgsqlRest
config section.Removed the default configuration file
appsettings.json
dependency.appsettings.json
is now optional. All default values in that file are now hardcoded in the build. Use configuration file to override these values. See help prompt above.NpgsqlRest version 2.10.0.0
New routine options:
RoutineEndpoint
option public string? RawValueSeparator { get; set; } = null;
that maps to new comment annotation separator
Defines a standard separator between raw values.
RoutineEndpoint
option public string? RawNewLineSeparator { get; set; } = null;
that maps to new comment annotation newline
Defines a standard separator between raw value columns.
1.5.0
NpgsqlRest version 2.9.0 - support for RAW option and annotation.
1.4.0
See the full diff here
- Added new configuration section:
ConnectionSettings
and movedUseEnvironmentConnection
,SetApplicationNameInConnection
, andUseJsonApplicationName
fromNpgsqlRest
toConnectionSettings
. - Added connections settings for customize connection parameters environment variable names (
HostEnvVar
,PortEnvVar
,DatabaseEnvVar
,UserEnvVar
andPasswordEnvVar
). Some Docker environments have different environment variable names. - Added connections settings
"UseEnvironmentConnectionWhenMissing": false
to be able to override connection string with environment variable names and vice versa. - Added support for overriding configuration settings from the command line. Command line configuration has to have this format:
--key=value
. See updated help for more info. - Configuration value
ExposeAsEndpoint
is now set to NULL (disabled) as the default configuration. This may be enabled in the development environment. - Fix: Default configuration files
appsettings.json
and optionalappsettings.Development.json
are now loaded from the same directory as all others (current directory as opposed to the exe location dir).
1.3.0
Upgrade System.Text.Json to 8.0.4
New option: NpgsqlRest.UseEnvironmentConnection
NpgsqlRest.UseEnvironmentConnection
:
If the connection string is not found, empty, or missing host, port or database, the connection string is created from the environment variables.
See https://www.postgresql.org/docs/current/libpq-envars.html for the list of the environment variables.
Note: Npgsql will use the environment variables by default but only for the small set of the connection string parameters like username and password (see https://www.npgsql.org/doc/connection-string-parameters.html#environment-variables).
Set this option to true to use environment variables for host, port and database as well.
When this option is enabled and these environment variables are set, connection string doesn't have to be defined at all and it will be created from the environment variables.
New option: NpgsqlRest.TsClient.DefaultJsonType
NpgsqlRest.TsClient.DefaultJsonType
:
Sets the default TypeScript type for JSON types when generating the TypeScript client.
1.2.8
- Upgrade NpgsqlRest to 2.8.5.
Version 1.2.7
Upgrade NpgsqlRest to 2.8.4.
Version from 1.2.4 to 1.2.7 is to sync with the version of the NPM package.
Improvements in external auth:
- The optional third parameter receives JSON with parameters received from an external provider and query string parameters supplied to the original endpoint.
- Login command number of parameters is optional i.e. it can be either
select * from auth($1)
orselect * from auth($1,$2)
orselect * from auth($1,$2,3)
(three is max). - Calls to external login/auth commands are logged by the same options, same rules, same format and the same logger as all other commands.
Version 1.2.4
- Upgrade NpgsqlRest to 2.8.2.
Version 1.2.3
New setting NpgsqlRest.InstanceIdRequestHeaderName
:
{
//
//...
//
"NpgsqlRest": {
"InstanceIdRequestHeaderName": "X-Instance-Id"
}
//
//...
//
}
{
//
//...
//
"NpgsqlRest": {
"InstanceIdRequestHeaderName": "X-Instance-Id"
}
//
//...
//
}
The NpgsqlRest.InstanceIdRequestHeaderName
setting allows you to specify the header name that will be used to identify the instance of the application. Header value will be used as the unique running instance ID.
This is useful when you have multiple instances of the application running behind a load balancer, and you want to identify which instance is handling the request.
The default is `null`` (not used).
Version 1.2.2
New setting NpgsqlRest.AuthenticationOptions.CustomParameterNameToClaimMappings
:
{
//
//...
//
"NpgsqlRest": {
"AuthenticationOptions": {
"CustomParameterNameToClaimMappings": {
"parameter_name": "claim_type_name"
}
}
},
//
//...
//
}
{
//
//...
//
"NpgsqlRest": {
"AuthenticationOptions": {
"CustomParameterNameToClaimMappings": {
"parameter_name": "claim_type_name"
}
}
},
//
//...
//
}
Maps a routine function name to a custom claim type. If the request parameter maps to the parameter name defined by the NpgsqlRest.AuthenticationOptions.CustomParameterNameToClaimMappings
- it will return the matching value of the claim type, regardless of the parameter value.
If that parameter is an array, it will have all values in an array of that claim type. If it is a single value, it will have only the first value of that claim type.
Version 1.2.1
- New option
UseHsts
: Adds middleware for using HSTS, which adds the Strict-Transport-Security header. See https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.builder.
{
//
//...
//
"Ssl": {
"HttpsRedirection": true,
//
// Adds middleware for using HSTS, which adds the Strict-Transport-Security header. See https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.builderhstsbuilderextensions.usehsts?view=aspnetcore-2.1
//
"UseHsts": true
}
//
//...
//
}
{
//
//...
//
"Ssl": {
"HttpsRedirection": true,
//
// Adds middleware for using HSTS, which adds the Strict-Transport-Security header. See https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.builderhstsbuilderextensions.usehsts?view=aspnetcore-2.1
//
"UseHsts": true
}
//
//...
//
}
Version 1.2.0
Bugfix with missing dictionary key when using external auth.
New Config section:
"Config": {
//
// Expose current configuration to the endpoint for debugging and inspection. Note, the password in the connection string is not exposed.
//
"ExposeAsEndpoint": "/config",
//
// Add the environment variables to configuration first.
//
"AddEnvironmentVariables": false
}
"Config": {
//
// Expose current configuration to the endpoint for debugging and inspection. Note, the password in the connection string is not exposed.
//
"ExposeAsEndpoint": "/config",
//
// Add the environment variables to configuration first.
//
"AddEnvironmentVariables": false
}
- Support for the
CustomRequestHeaders
option. - Support for the new options in TsClient.
Version 1.1.0
- Client application new release with massive improvements.
- External auth logins implementation (Google, LinkedIn, GitHub)