PGSuite is a toolkit for creating simple web applications with a client-server architecture (HTML/JavaScript and PostgreSQL) without a backend
The basic idea is that modern computing power is excessive for simple projects, which allows the backend to be eliminated entirely
Basic principle:
Only PostgreSQL, only hardcore!
- Zero middleware: HTML/JavaScript interacts with the database directly through ORM, stored procedures, and SQL queries
- All application logic is implemented directly within the PostgreSQL DBMS
- User access control is strictly enforced inside the database using access policies
- Full logging of all changes with the ability to view them
- Reports are generated within the database and transmitted as binary data (bytea) to a web browser
- Web pages are templated directly via SQL
| PGHist | - | PGHist keeps history of table changes and allows to get log(audit) of changes by row, list of changes by fields and table as of date-time in the past (versioning) |
| PGXLS | - | PGXLS is SQL schema with procedures for create file in Excel format (.xlsx), has 2 modes: export by SQL query and report builder |
| PGHtml | - | PGHtml is command line utility that creates HTML, JS, JSON and other types of files using data retrieved from PostgreSQL database |
| PGORM | - | PGORM allows to connect to PostgreSQL from web pages, execute SQL queries, use ORM and receive files |
Source code is posted in GitHub repositories
PGSuite is released under the MIT License (an open and free software license).
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.