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

@geostrategists/react-router-sessions-dynamodb

v1.3.1

Published

This package provides a session storage implementation for React Router that uses AWS DynamoDB to store session data.

Readme

AWS DynamoDB Session Storage for React Router

This package provides a session storage implementation for React Router that uses AWS DynamoDB to store session data.

Installation

npm install @geostrategists/react-router-sessions-dynamodb

Prerequisites

  • An AWS account with DynamoDB access
  • A DynamoDB table with a primary key (partition key) for storing session IDs
  • Important: Time-to-Live (TTL) must be enabled on the DynamoDB table for automatic session expiration
    • Configure the TTL attribute in the DynamoDB table settings

Usage

import { createDynamoDBSessionStorage } from "~/lib/sessions";

// Create a session storage instance with environment variables
const sessionStorage = createDynamoDBSessionStorage({
  tableName: process.env.DYNAMODB_TABLE_NAME,
  cookie: {
    // Configure with environment variables
  },
});

// Extract session functions
const { getSession, commitSession, destroySession } = sessionStorage;

// Use in a loader
export async function loader({ request }) {
  const session = await getSession(request.headers.get("Cookie"));

  // Work with session data
  const userData = session.get("userData");

  // Return data with the session cookie
  return json(
    { userData },
    {
      headers: {
        "Set-Cookie": await commitSession(session),
      },
    },
  );
}

Configuration Options

DynamoDBSessionStorageOptions

  • tableName (required): The name of the DynamoDB table to store sessions
  • idx (required): The name of the attribute used to store the session ID
  • ttl (optional): The name of the TTL attribute
  • client (optional): A pre-configured DynamoDBDocumentClient instance
  • cookie (optional): Cookie configuration options
    • name: Cookie name
    • secrets: Array of secrets for signing the cookie
    • sameSite: SameSite attribute
    • path: Cookie path
    • maxAge: Cookie max age in seconds
    • httpOnly: HttpOnly attribute
    • secure: Secure attribute
    • domain: Cookie domain
  • sessionMaxAge (optional): The max age of table entries when no cookie maxAge is set

[!NOTE] By default, react-router only sets session data to expire when the cookie has a maxAge (or expires date) set. When using session cookies, such an expiry time does not exist, and in theory, such cookies can be kept alive by the browser indefinitely.

However, it can still be desired to let the session data in the table expire at some point in the near or distant future, which can be set with the sessionMaxAge property.

DynamoDB Table Requirements

  • Primary key: Must match the idx value
  • TTL attribute: Must match the ttl value
  • Important: TTL must be enabled on the table for automatic session expiration