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

convex-table-history

v0.1.2

Published

A table history component for Convex.

Readme

Convex TableHistory Component

npm version

History on a Convex table

Attach a history component to your Convex table to keep track of changes.

  • View an audit log of all table changes in the Convex Dashboard or in a custom React component.
    • Answer questions like "was document A updated before document B?"
  • View an audit log of changes to a single document
    • Answer questions like "what was the user's email address before they changed it?"
  • Look at a snapshot of the table at any point in time.
// Paginate through all history on the "documents" table, from newest to oldest.
documentAuditLog.listHistory(ctx, args.maxTs, args.paginationOpts);

// Paginate through all history for a specific document, from newest to oldest.
documentAuditLog.listDocumentHistory(ctx, args.documentId, args.maxTs, args.paginationOpts);

// Paginate through all documents in the "documents" table at a specific timestamp.
documentAuditLog.listSnapshot(ctx, args.snapshotTs, args.currentTs, args.paginationOpts);

Found a bug? Feature request? File it here.

Pre-requisite: Convex

You'll need an existing Convex project to use the component. Convex is a hosted backend platform, including a database, serverless functions, and a ton more you can learn about here.

Run npm create convex or follow any of the quickstarts to set one up.

Installation

Install the component package:

npm install convex-table-history

Create a convex.config.ts file in your app's convex/ folder and install the component by calling use:

// convex/convex.config.ts
import { defineApp } from "convex/server";
import tableHistory from "convex-table-history/convex.config";

const app = defineApp();
app.use(tableHistory, { name: "documentAuditLog" });

export default app;

To add history to multiple tables, you can call app.use multiple times with different names. They will be available in your app as new TableHistory(components.<name>, ...).

Usage

import { components } from "./_generated/api";
import { TableHistory } from "convex-table-history";

const documentAuditLog = new TableHistory<DataModel, "documents">(components.documentAuditLog);

Add an item to the history table when a document changes:

async function patchDocument(ctx: MutationCtx, documentId: Id<"documents">, patch: Partial<Doc<"documents">>) {
  await ctx.db.patch(documentId, patch);
  const document = await ctx.db.get(documentId);
  await documentAuditLog.update(ctx, documentId, document);
}

Or attach a trigger to automatically write to the history table when a mutation changes a document:

const triggers = new Triggers<DataModel>();
triggers.register("documents", documentAuditLog.trigger());
export const mutation = customMutation(rawMutation, customCtx(triggers.wrapDB));

Now that you're writing to the history table, you can use the listHistory, listDocumentHistory, and listSnapshot functions to query the history.

These functions are paginated, so you can use them with usePaginatedQuery to get all of the entries incrementally. The pages consist of HistoryEntry objects, which have the following fields:

  • id: the id of the document that was changed
  • doc: the new version of the document that was changed, or null if the document was deleted
  • ts: the timestamp of the change. See serializability.
  • isDeleted: whether the document was deleted
  • attribution: an optional arbitrary object that will be stored with the history entry

See more example usage in example.ts.

Details of usage

Serializability

Convex mutations are serializable transactions, which is great for maintaining consistency in your tables.

However, if you need the guarantee that history timestamps match the mutations' serializable order, that would require serializing all changes to your whole database, and your database would slow to a crawl and get OCC errors.

You can configure the serializability of the history table by setting the serializability option. The three options are:

  • "table" -- i.e. the latest ts for the table, plus one
    • history entries are serializable with other updates on the same table
  • "document" -- i.e. the latest ts for the document, plus one
    • history entries are serializable with other updates on the same document.
  • "wallclock" -- i.e. Date.now()
    • history entry timestamps don't have guarantees, but they also take no extra dependencies and are usually sufficient.

The default serializability is "wallclock".

currentTs and maxTs are required

const [currentTs] = useState(Date.now()); // stable and recent
const [yesterday] = useState(Date.now() - 24 * 60 * 60 * 1000); // stable
const snapshotOfUsersYesterday = usePaginatedQuery(
  api.documents.listSnapshot,
  {
    currentTs,
    snapshotTs: yesterday,
  },
  { initialNumItems: 100 },
);
const auditLogBeforeYesterday = usePaginatedQuery(
  api.documents.listHistory,
  {
    maxTs: yesterday,
  },
  { initialNumItems: 100 },
);
  • For listSnapshot, currentTs should be a stable recent timestamp.
    • "Stable" means it should have the same value for all pages.
      • To keep a stable timestamp for all pages, pick a value on the client and pass it as an arg of usePaginatedQuery.
    • "Recent" is relative to how often the table gets new inserts. The amount of extra work performed by the query is proportional to the number of ctx.db.insert(tableName, doc) calls since the currentTs.
      • If the timestamp isn't recent, the queries might read too much data in a single page and throw an error.
      • Don't pick a timestamp in the future, or gaps will appear between pages as new documents are inserted. The timestamp should be Date.now() or slightly in the past.
  • For listHistory and listDocumentHistory, maxTs should be stable but doesn't need to be recent.

Why is this necessary?

The TableHistory component supports paginated queries with usePaginatedQuery and manual pagination. But it needs a little help from you to make everything work seamlessly.

You want fully reactive pagination. Concretely, usePaginatedQuery results should not have gaps or duplicates.

In order to implement this feature without the built-in .paginate method, the TableHistory component assumes its own data model is append-only (which is true, except when vacuuming), and takes in a stable recent timestamp. Then it ignores history entries created after that timestamp.

Attribution

Store an update's attribution to track information like which user made the change, or what mutation made the change.

await documentAuditLog.update(ctx, documentId, document, {
  attribution: {
    actorIdentity: await ctx.auth.getUserIdentity(),
    mutationName: "patchDocument",
    source: "web",
  },
});

The default attribution when using TableHistory.update is null.

The default attribution when using TableHistory.trigger is the mutation's ctx.auth.getUserIdentity().

Vacuuming

The history table can grow large, so you can use the vacuumHistory function to remove old history entries. This function will schedule background jobs to delete old history entries. The entries which will be deleted are those which are not visible at snapshots >=minTsToKeep.

After vacuuming up to minTsToKeep, you can no longer call listSnapshot with a snapshot timestamp less than minTsToKeep.

Limitations

  • No indexes: you can't use an index to change the sort order or get a subset of results.
    • Workaround: you can paginate until isDone returns true, and sort or filter the results yourself, either on the client or in an action. Consider manual pagination.