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

@phila/db-postgres

v0.0.6

Published

Lambda-aware PostgreSQL connection pooling for City of Philadelphia AWS infrastructure

Readme

@phila/db-postgres

Lambda-aware PostgreSQL connection pooling for City of Philadelphia AWS infrastructure. Provides a cached connection pool that reads credentials from AWS Secrets Manager.

Installation

npm install @phila/db-postgres
# or
pnpm add @phila/db-postgres

Features

  • Lambda-optimized: Connection pool configured for Lambda cold starts and warm containers
  • Secrets Manager integration: Automatically retrieves credentials from AWS Secrets Manager
  • Connection caching: Reuses connections across Lambda invocations
  • SSL support: Secure connections with SSL enabled by default

Usage

Basic Usage

import { getPool } from '@phila/db-postgres';

// Uses environment variables: DB_SECRET_ARN and DB_NAME
const pool = await getPool();

const result = await pool.query('SELECT * FROM users WHERE id = $1', [userId]);

With Options

import { getPool } from '@phila/db-postgres';

const pool = await getPool({
  secretArn: 'arn:aws:secretsmanager:us-east-1:123456789012:secret:db-credentials',
  database: 'myapp'
});

const result = await pool.query('SELECT * FROM users');

Environment Variables

The library uses the following environment variables if options are not provided:

  • DB_SECRET_ARN - ARN of the AWS Secrets Manager secret containing database credentials
  • DB_NAME - Name of the database to connect to

Secrets Manager Format

The secret in AWS Secrets Manager must be a JSON object with the following structure:

{
  "host": "database.example.com",
  "port": 5432,
  "username": "dbuser",
  "password": "dbpassword"
}

Connection Pool Configuration

The pool is configured for Lambda environments:

  • Max connections: 1 (Lambda-optimized)
  • Idle timeout: 120 seconds
  • Connection timeout: 5 seconds
  • SSL: Enabled with rejectUnauthorized: false

These settings ensure:

  • Efficient connection reuse in warm Lambda containers
  • Fast connection establishment
  • Proper cleanup of idle connections

Example: Lambda Function

import { APIGatewayProxyHandler } from 'aws-lambda';
import { getPool } from '@phila/db-postgres';

export const handler: APIGatewayProxyHandler = async (event) => {
  const pool = await getPool();
  
  const result = await pool.query(
    'SELECT * FROM users WHERE id = $1',
    [event.pathParameters?.id]
  );
  
  return {
    statusCode: 200,
    body: JSON.stringify(result.rows[0])
  };
};

Error Handling

The library uses Node.js assertions to validate required parameters. Make sure to:

  1. Set DB_SECRET_ARN environment variable or provide secretArn option
  2. Set DB_NAME environment variable or provide database option
  3. Ensure the secret exists and has the correct format

Development

# Build
pnpm build

# Run tests
pnpm test

# Watch mode
pnpm test:watch

# Lint
pnpm lint

Dependencies

  • pg - PostgreSQL client for Node.js
  • @aws-sdk/client-secrets-manager - AWS SDK for retrieving secrets

License

Part of the City of Philadelphia AWS Infrastructure Library.