Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
The pg-cursor npm package provides a way to handle large result sets in PostgreSQL by using server-side cursors. This allows you to fetch rows in smaller chunks, which can be more efficient and less memory-intensive than fetching all rows at once.
Creating a Cursor
This feature allows you to create a cursor for a given SQL query. The cursor can then be used to fetch rows in smaller chunks.
const { Client } = require('pg');
const Cursor = require('pg-cursor');
const client = new Client();
await client.connect();
const cursor = client.query(new Cursor('SELECT * FROM large_table'));
Fetching Rows
This feature allows you to fetch a specified number of rows from the cursor. This can be done repeatedly to fetch all rows in manageable chunks.
cursor.read(100, (err, rows) => {
if (err) throw err;
console.log(rows);
});
Closing the Cursor
This feature allows you to close the cursor when you are done fetching rows. This is important for freeing up resources on the server.
cursor.close((err) => {
if (err) throw err;
client.end();
});
The pg-query-stream package provides a way to stream rows from a PostgreSQL query. It is similar to pg-cursor in that it allows you to handle large result sets efficiently. However, pg-query-stream uses a readable stream interface, which can be more convenient for some use cases.
The pg-promise package is a PostgreSQL interface for Node.js that supports promises. It includes a feature for streaming rows from a query, similar to pg-cursor. However, pg-promise offers a broader range of features for working with PostgreSQL, including transaction management and query formatting.
Use a PostgreSQL result cursor from node with an easy to use API.
$ npm install pg-cursor
note: this depends on either npm install pg
or npm install pg.js
, but you must be using the pure JavaScript client. This will not work with the native bindings.
The MIT License (MIT)
Copyright (c) 2013 Brian M. Carlson
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.
FAQs
Query cursor extension for node-postgres
We found that pg-cursor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.