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

langgraph-checkpoint-cloudflare-d1

v0.2.0

Published

LangGraph checkpointer for Cloudflare D1 database

Downloads

49

Readme

langgraph-checkpoint-cloudflare-d1

Implementation of a LangGraph.js CheckpointSaver that uses a Cloudflare D1 database.

Based on the original SQLite implementation.

Compatibility

  • Version 0.2.x: Compatible with @langchain/langgraph-checkpoint v1.0.0+ and @langchain/core v1.1.4+
  • Version 0.1.x: Compatible with @langchain/langgraph-checkpoint v0.1.x and @langchain/core v0.3.x

Conformity

Running the LangGraph.js validation test suite gives 4 expected failures:

  1. Channel delta storage (1 test): The newVersions parameter in put() is not used to filter channel_values. This is an optimization that stores only changed channels rather than all channel values. None of the official LangGraph checkpointers (MemorySaver, SqliteSaver, MongoDBSaver) implement this yet either - see issue #593.

  2. Pending sends migration (3 tests): Migration of pending_sends from v1-v3 checkpoint format to v4 is not implemented. Since this is primarily a new implementation without legacy data, this migration was intentionally deferred.

To run the validation tests, link the @langchain/langgraph-checkpoint-validation package locally in the test/ directory (see test/package.json).

Building

npx yarn install
npx yarn build

Usage

import { CloudflareD1Saver } from "langgraph-checkpoint-cloudflare-d1";

const writeConfig = {
  configurable: {
    thread_id: "1",
    checkpoint_ns: ""
  }
};
const readConfig = {
  configurable: {
    thread_id: "1"
  }
};

// Create a checkpointer with your D1 database binding
const checkpointer = new CloudflareD1Saver(env.DB);

const checkpoint = {
  v: 4,
  ts: "2024-07-31T20:14:19.804150+00:00",
  id: "1ef4f797-8335-6428-8001-8a1503f9b875",
  channel_values: {
    my_key: "meow",
    node: "node"
  },
  channel_versions: {
    __start__: 2,
    my_key: 3,
    "start:node": 3,
    node: 3
  },
  versions_seen: {
    __input__: {},
    __start__: {
      __start__: 1
    },
    node: {
      "start:node": 2
    }
  },
}

// store checkpoint
await checkpointer.put(writeConfig, checkpoint, { source: "update", step: -1, parents: {} }, {})

// load checkpoint
await checkpointer.get(readConfig)

// list checkpoints
for await (const checkpoint of checkpointer.list(readConfig)) {
  console.log(checkpoint);
}