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

@triadjs/tanstack-query

v0.2.2

Published

TanStack Query (React Query) hook generator for Triad routers

Readme

@triadjs/tanstack-query

Generate fully-typed TanStack Query hooks from a Triad router. Closes the single-source-of-truth loop: a change to a Triad schema produces compile errors in the exact call sites on the frontend.

Install

npm install --save-dev @triadjs/tanstack-query

@tanstack/react-query is a peer concern: the generated code imports from it, so your frontend app must have it installed:

npm install @tanstack/react-query

Usage

triad frontend generate --target tanstack-query --output ./src/generated/api

Or via triad.config.ts:

import { defineConfig } from '@triadjs/test-runner';

export default defineConfig({
  router: './src/app.ts',
  frontend: {
    target: 'tanstack-query',
    output: './src/generated/api',
    baseUrl: '/api',
  },
});

Output layout

./src/generated/api/
  index.ts        // barrel re-exporting everything
  types.ts        // interface for every named model + per-endpoint Params/Query/Headers
  query-keys.ts   // per-resource key factories (bookKeys, reviewKeys, ...)
  client.ts       // runtime fetch client + HttpError (safe to edit / replace)
  <context>.ts    // one file per bounded context, with its hooks

Generated hook shape

For GET /books/:bookId (named getBook in the router):

export function useBook(
  params: GetBookParams,
  options?: Omit<UseQueryOptions<Book, HttpError>, 'queryKey' | 'queryFn'>,
): UseQueryResult<Book, HttpError> {
  return useQuery({
    queryKey: bookKeys.detail(params.bookId),
    queryFn: () => client.get<Book>(`/books/${params.bookId}`),
    ...options,
  });
}

For POST /books:

export function useCreateBook(
  options?: Omit<UseMutationOptions<Book, HttpError, { body: CreateBook }>, 'mutationFn'>,
): UseMutationResult<Book, HttpError, { body: CreateBook }> {
  const qc = useQueryClient();
  return useMutation({
    mutationFn: (vars) => client.post<Book>(`/books`, { body: vars.body }),
    onSuccess: (data, variables, context) => {
      qc.invalidateQueries({ queryKey: bookKeys.lists() });
      options?.onSuccess?.(data, variables, context);
    },
    ...options,
  });
}

Query key strategy

The default strategy infers a "resource" from the last non-parameter segment of each endpoint path:

  • /booksbookKeys.all = ['books']
  • /books/:bookIdbookKeys.detail(id)
  • /projects/:projectId/taskstaskKeys (nested resource)
  • /auth/login → flat key loginKey = ['auth', 'login']

Singularisation is a small built-in heuristic (booksBook, storiesStory, classesclass). If the heuristic picks the wrong resource for your routes, file an issue with the path shape — the custom strategy escape hatch is on the roadmap.

Invalidation defaults

| Method | Invalidates | | ------ | ----------- | | POST /resource | resourceKeys.lists() | | PATCH/PUT /resource/:id | resourceKeys.detail(id) + resourceKeys.lists() | | DELETE /resource/:id | resourceKeys.detail(id) + resourceKeys.lists() |

Each hook forwards the user's own onSuccess after running the built-in invalidations, so you can layer custom cache updates on top.

Swapping the runtime client

client.ts is a small, self-contained fetch wrapper. It's generated with the comment "safe to edit or replace" at the top. To add auth headers, request signing, or a custom retry policy, either:

  1. Replace client.ts with your own implementation (just preserve the method signatures), or
  2. Keep your own client file and re-export its client from client.ts — the hooks only depend on the shape.

Non-goals for v1

  • No Suspense mode (useSuspenseQuery)
  • No SSR prefetch helpers
  • No Solid/Vue variants
  • No mutation-level optimistic updates (bring your own onMutate)

Related

  • Phase 11 of the Triad ROADMAP
  • @triadjs/openapi — generates OpenAPI documents from the same router
  • @triadjs/drizzle — generates Drizzle schemas from the same router