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

aws-lambda-secret-fetcher

v0.8.0

Published

Lightweight TypeScript library for fetching secrets from AWS Secrets Manager via the AWS Parameters and Secrets Lambda Extension (http://localhost, default port 2773), with retries and timeouts using fetch-retrier.

Readme

AWS Lambda Secret Fetcher

npm version license Node.js build

A TypeScript library that fetches secrets from AWS Secrets Manager through the AWS Parameters and Secrets Lambda Extension. It calls the local extension HTTP API with retries and timeouts.

Features

  • Uses the local Lambda Extension HTTP API (no AWS SDK required)
  • Fails fast when AWS_SESSION_TOKEN is missing or blank
  • Resolves the extension port from extensionHttpPort, then PARAMETERS_SECRETS_EXTENSION_HTTP_PORT, then 2773
  • Retries timeouts, network errors, and transient HTTP responses, including the extension not-ready response
  • Parses JSON string secrets and returns other strings unchanged
  • Decodes binary secrets from standard base64 into Uint8Array

How it works

Run this library inside an AWS Lambda function that has the Parameters and Secrets Lambda Extension layer attached. getSecretValue reads AWS_SESSION_TOKEN, requests http://localhost:{port}/secretsmanager/get, and retries while the extension is not ready. The payload must contain exactly one non-empty SecretString or SecretBinary. A string secret is returned as parsed JSON or as the original string. A binary secret is returned as Uint8Array.

If AWS_SESSION_TOKEN is missing or blank, the call throws SecretFetcherSessionTokenError and does not contact the extension. Check a specific SecretFetcher*Error subclass before the SecretFetcherError base class.

Installation

npm

npm install aws-lambda-secret-fetcher

yarn

yarn add aws-lambda-secret-fetcher

pnpm

pnpm add aws-lambda-secret-fetcher

Usage

import { secretFetcher } from 'aws-lambda-secret-fetcher';

const apiKey = await secretFetcher.getSecretValue('my-api-key');

Pass a type argument when the secret is JSON. Narrow Uint8Array before reading string-secret fields, because a binary secret uses that type.

import { secretFetcher } from 'aws-lambda-secret-fetcher';

interface DbCredentials {
  username: string;
  password: string;
  host: string;
}

const credentials = await secretFetcher.getSecretValue<DbCredentials>('my-db-credentials');
if (credentials instanceof Uint8Array) {
  throw new Error('Expected a JSON secret');
}
console.log(credentials.username);

const certificate = await secretFetcher.getSecretValue('my-binary-secret');
if (certificate instanceof Uint8Array) {
  console.log(certificate.byteLength);
}

When the extension layer sets PARAMETERS_SECRETS_EXTENSION_HTTP_PORT, omit the port. Set extensionHttpPort only to override that variable or the default.

import { secretFetcher, type GetSecretValueOptions } from 'aws-lambda-secret-fetcher';

const options: GetSecretValueOptions = {
  timeoutMs: 3000,
  retries: 5,
  baseBackoffMs: 500,
};

const secret = await secretFetcher.getSecretValue('my-secret', options);

const onCustomPort = await secretFetcher.getSecretValue('my-secret', {
  extensionHttpPort: 9999,
});

Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | extensionHttpPort | string \| number | PARAMETERS_SECRETS_EXTENSION_HTTP_PORT or 2773 | TCP port the extension listens on at localhost. Highest precedence when set. Must be an integer between 1 and 65535. | | timeoutMs | number | 2000 | Request timeout in milliseconds per attempt | | retries | number | 3 | Maximum number of attempts (including the first request) | | baseBackoffMs | number | 300 | Base delay in milliseconds for backoff between retries |

Requirements

  • Node.js >= 20.0.0

License

This project is licensed under the (Apache-2.0) License.