
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
A lightweight, promise-based interface that brings ease to postgres. Postgrease is a wrapper around the node-postgres module.
npm install --save postgrease
Postgrease takes whatever you would use to initialize node-postgres: this can be a connection string, or a config object.
var db = require('postgrease');
var dbconfig = {
host: 'localhost',
database: 'example',
user: 'notduncansmith',
port: '5432',
password: 'mypassword'
};
var connstring = 'postgres://notduncansmith:mypassword@localhost:5432/example';
db.configure(dbconfig);
// db.configure(connstring);
Important Notes:
All Postgrease methods return promises
All methods use parameterized queries
This is a basic promise wrapper around pg's client.query() method. It requires one parameter, sql, the SQL string to execute.
If you want to make a parameterized query, you can also pass a second argument, params, which should be an array containing the values to be passed.
db.query('SELECT * FROM users WHERE username = ?', ['notduncansmith'])
.then(function(results) {
console.log(results);
});
This is a convenience method for selecting records from a database by their id. It takes an options object with the following properties:
params: an array of ids to select by (you need to use an array, even if you only have one id)
fields: an array of fields to select (you can select * by setting fields to ['*'])
table: the name of the table to run this query against
var opts = {
ids: ['1','2','3'],
fields: ['name','email'],
table: 'users'
}
db.select(opts)
.then(function(results) {
console.log(results);
});
This is like the select method, except you pass it a field to select on.
var opts = {
params: ['notduncansmith'],
fields: ['name', 'email'],
searchBy: 'username',
table: 'users'
};
db.selectWhere(opts)
.then(function(results) {
console.log(results);
});
This is a convenience method for returning all records from a table. It takes a single parameter, the name of the table you want to select from.
db.selectAll('users').then(function(results) {
console.log(results);
});
This method allows you to insert an object into a table. It takes two parameters, the object and the table name.
var duncan = {
username: 'notduncansmith',
name: 'Duncan Smith',
email: 'hello@duncanmsmith.com'
};
db.insert(duncan, 'users').then(function(results){
console.log(results);
});
MIT license, see LICENSE.txt for details.
FAQs
A lightweight and powerful interface for node-postgres (pg)
We found that postgrease demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.