
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@pgsql/types
Advanced tools
@pgsql/types is a TypeScript library providing type definitions for PostgreSQL AST nodes, primarily used in conjunction with pgsql-parser. It offers a comprehensive and type-safe way to interact with the AST nodes generated by PostgreSQL query parsing.
Install the package via npm:
npm install @pgsql/types
@pgsql/types provides TypeScript type definitions for PostgreSQL Abstract Syntax Tree (AST) nodes. These types are useful for constructing, analyzing, or manipulating ASTs in a type-safe manner.
Here are a few examples of how you can use these types in your TypeScript projects:
You can use the types to validate AST nodes, ensuring they conform to the expected structure:
import { CreateStmt } from '@pgsql/types';
function validateCreateStmt(stmt: CreateStmt) {
if (!stmt.relation || !stmt.tableElts) {
throw new Error('Invalid CreateStmt: missing required fields');
}
// Add more validation logic as needed
console.log('CreateStmt is valid');
}
// Example usage
validateCreateStmt(createStmtObject);
Types help ensure that you construct AST nodes correctly:
import { CreateStmt, ColumnDef, Constraint } from '@pgsql/types';
const newColumn: ColumnDef = {
colname: 'id',
typeName: { names: [{ String: { str: 'int4' } }] },
constraints: [{ Constraint: { contype: 'CONSTR_PRIMARY' } }],
};
const createStmt: CreateStmt = {
relation: { relname: 'new_table' },
tableElts: [newColumn],
};
console.log(createStmt);
Our latest is built with PostgreSQL 17 AST types.
| PG Major Version | libpg_query | npm dist-tag |
|---|---|---|
| 17 | 17-6.1.0 | pg17 |
| 16 | 16-5.2.0 | pg16 |
| 15 | 15-4.2.4 | pg15 |
| 14 | 14-3.0.0 | pg14 |
| 13 | 13-2.2.0 | pg13 |
pgsql-parser.pgsql-parser for parsing and deparsing SQL queries.AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
No developer or entity involved in creating Software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the Software code or Software CLI, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
FAQs
PostgreSQL AST types from the real Postgres parser
The npm package @pgsql/types receives a total of 783,327 weekly downloads. As such, @pgsql/types popularity was classified as popular.
We found that @pgsql/types 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
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.