npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@rawsql-ts/adapter-node-pg

v0.15.2

Published

Node pg adapter that connects PostgreSQL fixtures to @rawsql-ts/testkit-postgres.

Downloads

145

Readme

@rawsql-ts/adapter-node-pg

This adapter wires pg’s standard Client/Pool APIs to @rawsql-ts/testkit-postgres. It exposes the familiar helpers (createPgTestkitClient, createPgTestkitPool, wrapPgClient) while delegating all rewriting/fixture behavior to the driver-agnostic package.

Installation

pnpm add -D @rawsql-ts/adapter-node-pg pg

@rawsql-ts/testkit-postgres is a hard dependency of this adapter, so it is installed automatically.

API highlights

  • createPgTestkitClient(options) - creates a PgTestkitClient, lazily opens a pg connection, rewrites CRUD queries using fixtures, and returns a facade that behaves like pg.Client.
  • createPgTestkitPool(connectionString, ...fixtures, options?) - builds a pg.Pool whose client constructor is replaced with the PgTestkitClient so transactions still execute on the raw driver.
  • wrapPgClient(client, options) - wraps any existing pg.Client or pg.Pool instance so queries flow through the PgTestkitClient and the configured fixtures without touching your schema.

Each helper accepts the same fixture configuration as before (tableDefinitions, tableRows, ddl, missingFixtureStrategy, etc.) and passes onExecute hooks through to @rawsql-ts/testkit-postgres.

The wrapped query helpers also accept named parameters (e.g. :user_id) by compiling them to indexed placeholders ($1, $2, ...). When using named parameters, pass an object of values keyed by parameter name. Indexed placeholders and positional arrays are still supported for compatibility.

Fixtures and validation

This adapter reuses the resolveFixtureState and validateFixtureRowsAgainstTableDefinitions helpers from @rawsql-ts/testkit-postgres, so all adapters share the same schema snapshot and diagnostics.

Testing

The integration tests run against a Dockerized Postgres instance via @testcontainers/postgresql. Run pnpm --filter @rawsql-ts/adapter-node-pg test to exercise the pool/client/wrapper helpers. Ensure Docker is running before executing the suite.