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

@questpie/tanstack-db

v3.28.8

Published

Typed TanStack DB collections backed by a QUESTPIE client

Readme

@questpie/tanstack-db

Typed TanStack DB collections backed by a QUESTPIE client.

Per-request setup

TanStack Start and other SSR applications must create both the QueryClient and the QUESTPIE collections once per request:

import { createQuestpieCollections } from "@questpie/tanstack-db";
import { QueryClient } from "@tanstack/react-query";
import type { QuestpieClient } from "questpie/client";

import type { AppConfig } from "#questpie";

export function createRequestDb(client: QuestpieClient<AppConfig>) {
	const queryClient = new QueryClient();
	const db = createQuestpieCollections(client, { queryClient });

	return { db, queryClient };
}

Call db.destroy() when the request or browser application is torn down. A module-scope registry is safe only in the browser; on the server it would leak one request's optimistic overlay into another request.

Use syncMode: "snapshot" to keep the store replaced from QUESTPIE .live() snapshots. The default is "refetch" and uses TanStack Query's authoritative refetch after a successful mutation. Successful optimistic mutations are folded into the current authoritative snapshot until the next live snapshot arrives.

The find registry option accepts only row-shape-preserving filters, ordering, pagination, locale, stage, and soft-delete controls. Projections (columns), relation expansion (with), extras, and grouping are rejected because every TanStack DB row must retain the base collection shape and its canonical id.

Snapshot mode narrows that set further, to what a live subscription can carry: where, orderBy, limit, offset and locale. search, stage, includeDeleted and localeFallback are rejected there, because the live snapshot would ignore them while the post-mutation repair read applied them — one collection describing two different row sets.

A mutation that loses an optimistic-concurrency race rejects with QuestpieDbConflictError. The optimistic state is already rolled back, so refetch before retrying: the row still on screen carries the revision that lost.

The package currently supports refetch and full-snapshot synchronization. Native row-delta synchronization is added independently without changing the collection factory API.