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

dynamodb-refresh-token-provider

v0.2.0

Published

TypeScript library that stores **opaque refresh tokens** in **Amazon DynamoDB** using AWS SDK for JavaScript v3. Tokens are persisted under a hash of the plaintext value; **issue**, **rotate** (with reuse detection via a transactional write), and **revoke

Readme

DynamoDB Refresh Token Provider

npm version License build

TypeScript library that stores opaque refresh tokens in Amazon DynamoDB using AWS SDK for JavaScript v3. Tokens are persisted under a hash of the plaintext value; issue, rotate (with reuse detection via a transactional write), and revoke (idempotent) are supported.

Features

  • RefreshTokenStore interface — swap implementations while keeping the same API.
  • DynamodbRefreshTokenProvider — single-table design with partition key pk (string), strongly consistent reads by default.
  • Rotation safety — marks the old row as rotated and inserts the successor in one DynamoDB transaction; detects reuse and conflicting updates.
  • Structured errorsRefreshTokenInvalidError, RefreshTokenExpiredError, RefreshTokenRevokedError, RefreshTokenReusedError, and related types for instanceof handling.
  • Utilitiessha256hex and randomtoken for hashing and token generation aligned with the store.

Installation

npm install dynamodb-refresh-token-provider
yarn add dynamodb-refresh-token-provider

Usage

Create a store with your table name, AWS region, and optional StoreOptions. Ensure your DynamoDB table has a string partition key named pk (same attribute name the library uses for items).

import {
  DynamodbRefreshTokenProvider,
  RefreshTokenInvalidError,
  RefreshTokenReusedError,
} from 'dynamodb-refresh-token-provider';

const store = new DynamodbRefreshTokenProvider('your-refresh-token-table', 'us-east-1', {
  ttlDays: 60,
  pkPrefix: 'rt#',
});

// Issue a new refresh token for a subject/session
const issued = await store.issue({
  subjectId: 'user-123',
  sessionId: 'session-456',
});
// issued.refreshToken — send to the client (plaintext)
// issued.refreshTokenExpiresAt — Unix seconds

// Rotate: exchange current token for a new one
try {
  const rotated = await store.rotate({ refreshToken: issued.refreshToken });
  // rotated.refreshToken, rotated.refreshTokenExpiresAt, rotated.subjectId, rotated.sessionId
} catch (e) {
  if (e instanceof RefreshTokenReusedError) {
    // token was already rotated or transaction lost the race
  }
  if (e instanceof RefreshTokenInvalidError) {
    // unknown or malformed token
  }
  throw e;
}

// Revoke: idempotent; succeeds even if the row does not exist
await store.revoke({ refreshToken: issued.refreshToken });

Options

Constructor: new DynamodbRefreshTokenProvider(tableName, region, options?).

| Option | Type | Default | Description | |--------|------|---------|-------------| | ttlDays | number | 60 | Lifetime of issued/rotated tokens in days (added to now in seconds). | | pkPrefix | string | 'rt#' | Prefix for the partition key; full pk is prefix + SHA-256 hex of the plaintext token. | | consistentRead | boolean | true | Use strongly consistent reads on GetItem when loading a token row. | | endpoint | string | (none) | Custom DynamoDB API endpoint (e.g. LocalStack or DynamoDB Local). |

Method parameters also accept an optional now?: Date on issue, rotate, and revoke for testing or clock injection.

Requirements

  • Node.js 20.0.0 or later.
  • A DynamoDB table with a string partition key attribute pk.
  • AWS credentials and permissions for PutItem, GetItem, UpdateItem, and TransactWriteItems on that table (and the configured endpoint if used).

License

This project is licensed under the Apache-2.0 License.