node-postgres
node-postgres copied to clipboard
PostgreSQL client for node.js.
I have just published [pg-rx-listen](https://github.com/vitaly-t/pg-rx-listen). Please add it to the [Extras](https://github.com/brianc/node-postgres/wiki/Extras). P.S. That list should be cleaned up a bit. It has a number of projects there that have long...
Good afternoon, I'm trying to use the cursors to page my application to improve the speed of the application. But in the pg.Cursor documentation there is no option to 'MOVE'...
Since I'm using `QueryStream` for a one-off task, I'd like to wrap it with a function that manages the connection for me. ```typescript export function streamAllRows( config: ClientConfig, query: string,...
Improve installation instruction
Add docker
https://github.com/brianc/node-postgres/issues/3538#issuecomment-3263052323
https://github.com/TechEmpower/FrameworkBenchmarks is a poupular nodejs benchmark: > This project provides representative performance measures across a wide field of web application frameworks. I have noticied that most of the frameworks use...
Is there a simple way to enable logging at the wire-protocol level? I've worked out how to DIY it via changes to `node_modules/pg/lib/connection.js` and `node_modules/pg-protocol/dist/buffer-reader.js`, but maybe there's a more...
Add proper error handling for SCRAM-SERVER-FINAL-MESSAGE error attribute. The SCRAM specification allows servers to return error messages via the 'e' attribute in the server final message. Currently, these errors are...
If you will execute any read query, you can see in node inspector that GC ignores query result and doesn't cleanup it ```javascript const client = new PostgreSqlClient({...credentials, query_timeout: 15...