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

chat-state-filesystem

v0.0.2

Published

Chat SDK Filesystem State Adapter

Readme

chat-state-filesystem

Filesystem state adapter for Chat SDK. It stores subscriptions, locks, cache values, lists, and queues in a directory of JSON files using an injected minimal filesystem interface.

Installation

bun add chat-state-filesystem

chat is an optional dependency and is only imported as TypeScript types by this package. Your application should install chat when using the adapter with Chat SDK.

Usage

import * as fs from "node:fs/promises";
import { Chat } from "chat";
import { createFileSystemState } from "chat-state-filesystem";

const state = createFileSystemState({
  fs,
  path: ".chat-state",
});

const bot = new Chat({
  adapters: {
    // ...
  },
  state,
  userName: "bot",
});

You can override lock token generation:

const state = createFileSystemState({
  fs,
  generateToken: () => crypto.randomUUID(),
});

Filesystem Interface

The fs option accepts this minimal interface:

export interface FileSystem {
  mkdir(path: string, options?: { recursive?: boolean }): Promise<unknown>;
  readFile(path: string, encoding: "utf8"): Promise<string>;
  rm?(path: string, options?: { force?: boolean }): Promise<unknown>;
  unlink?(path: string): Promise<unknown>;
  writeFile(path: string, data: string, encoding: "utf8"): Promise<unknown>;
}

node:fs/promises satisfies this interface directly.

Storage Layout

By default, state is stored under .chat-state:

.chat-state/
├── subscriptions.json
├── locks/
│   └── {thread-key}.json
├── cache/
│   └── {cache-key}.json
├── lists/
│   └── {list-key}.json
└── queues/
    └── {thread-key}.json

Keys are encoded with encodeURIComponent, and . is encoded as %2E.

Capabilities

| Feature | Supported | |---------|-----------| | Persistence | Yes, JSON files on disk | | Multi-instance | No | | Subscriptions | Yes, filesystem-backed | | Distributed locking | No, single-process file mutation lock only | | Key-value caching | Yes, filesystem-backed with TTL | | Lists | Yes, filesystem-backed with TTL and max length trimming | | Queues | Yes, filesystem-backed with expiry and max size trimming | | Automatic reconnect | Not applicable, no network connection | | Cluster support | No | | Sentinel support | No | | Key prefix namespacing | No, use separate path directories instead |

Notes

This adapter serializes read-modify-write operations in-process per file. It is appropriate for local development, tests, and simple single-process deployments. It is not a replacement for Redis or Postgres when you need robust multi-process or multi-host distributed locking.

Development

bun install
bun test
bun run typecheck
bun run build

Tests write fixtures to .tmp/.chat-state. The .tmp directory is intentionally not removed after the final test run so the generated state can be inspected.

License

MIT