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

@ticatec/pg-common-library

v3.1.0

Published

Production-ready PostgreSQL driver for Node.js with connection pooling, automatic boolean type conversion, and seamless integration with @ticatec/node-common-library interfaces.

Readme

@ticatec/pg-common-library

Version License: MIT

A production-ready PostgreSQL database driver implementation for Node.js applications, built on the pg driver with connection pooling and dual CommonJS / ESM support. Integrates seamlessly with @ticatec/node-common-library database abstractions and @ticatec/logger-wrapper.

中文 | English

Features

  • Dual Module Support: Full CommonJS and ESM support with TypeScript typings (lib/cjs & lib/esm)
  • Transaction Control: Full transaction control with BEGIN, COMMIT, and ROLLBACK operations
  • CRUD Operations: Complete support for SQL queries, inserts, updates, and deletes with generic typing
  • Interface Compliance: Implements standard DBConnection and DBFactory interfaces for system decoupling
  • Connection Pooling: Built-in connection pool management using pg.Pool
  • Logger Wrapper Integration: Uses @ticatec/logger-wrapper for high-performance structured logging

Installation

pnpm add @ticatec/pg-common-library @ticatec/node-common-library @ticatec/logger-wrapper pg pino

Peer Dependencies

{
  "peerDependencies": {
    "@ticatec/logger-wrapper": "^0.1.0",
    "@ticatec/node-common-library": "^3.1.0",
    "pg": "^8.8.0",
    "pino": ">=8.0.0"
  }
}

Quick Start

import pino from 'pino';
import { initialize as initLogger } from '@ticatec/logger-wrapper';
import { initializePg } from '@ticatec/pg-common-library';
import { DBManager } from '@ticatec/node-common-library';

// 1. Initialize Logger
initLogger(pino({ level: 'info' }));

// 2. Initialize PostgreSQL Factory & DBManager
const pgFactory = initializePg({
  host: 'localhost',
  user: 'postgres',
  password: 'secret',
  database: 'myapp',
  port: 5432,
  max: 20
});

DBManager.init(pgFactory);

// 3. Connect and execute
const conn = await DBManager.getInstance().connect();
try {
  await conn.beginTransaction();
  const user = await conn.find<{ id: number; name: string }>(
    'SELECT * FROM users WHERE id = $1',
    [1]
  );
  await conn.commit();
} catch (error) {
  await conn.rollback();
} finally {
  await conn.close();
}

License

MIT © Ticatec