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

@sometic/query

v3.0.2

Published

Portable server-state query client for Sometic: keys, cache, mutations, invalidation.

Readme

@sometic/query

Portable server-state query client for Sometic: keys, cache, observers, mutations, and invalidation.

createQueryClient holds an in-memory cache keyed by query keys, with observers (createQueryObserver, createMutationObserver), invalidation, retries, and garbage collection options. Optional @sometic/query/http bridges @sometic/http via createHttpQueryFn so AbortSignals and safe URLs stay consistent.

Why it exists: UI client state belongs in @sometic/store; form values belong in @sometic/forms; session identity belongs in @sometic/auth. Server lists and detail payloads need a cache that can clear on session epoch changes. @sometic/app-shell binds query to auth for that wipe/refetch behavior.

Standout features: hashQueryKey / partialMatchKey, observer result shapes familiar to modern query libraries, mutation observers, and an HTTP helper that forwards context.signal. Framework hooks live in adapter packages (@sometic/react/query, @sometic/vue/query), keeping this core framework-free.

Depends on @sometic/core; optional peer @sometic/http. Docs: introduction and query utilities.

Install

pnpm add @sometic/query
npm install @sometic/query
yarn add @sometic/query

Optional HTTP bridge:

pnpm add @sometic/http

Usage

Create a client and observe a query:

import { createQueryClient, createQueryObserver } from "@sometic/query";

const query = createQueryClient({
    defaultOptions: { queries: { staleTime: 30_000 } },
});

const observer = createQueryObserver(query, {
    queryKey: ["users", "me"],
    queryFn: async ({ signal }) => {
        const response = await fetch("/api/users/me", { signal });
        return response.json();
    },
});

const stop = observer.subscribe(() => {
    console.log(observer.getCurrentResult().status);
});

Bridge @sometic/http into a query function:

import { createHttp } from "@sometic/http";
import { createHttpQueryFn, createQueryClient } from "@sometic/query";

const http = createHttp({ baseUrl: "https://api.example.com" });
const query = createQueryClient();

const queryFn = createHttpQueryFn<{ id: string }>({
    client: http,
    path: "/users/me",
});

await query.fetchQuery({ queryKey: ["users", "me"], queryFn });

CDN

Docs: https://sometic.dev/utilities/query.

Simple script

<script src="https://cdn.jsdelivr.net/npm/@sometic/[email protected]/dist/cdn/sometic-query.iife.js"></script>
<script>
    const client = SometicQuery.createQueryClient();
</script>

Module script

<script type="module">
    import { createQueryClient } from "https://cdn.jsdelivr.net/npm/@sometic/[email protected]/dist/cdn/sometic-query.esm.js";

    const client = createQueryClient();
</script>

Peers / when not to use

Optional peer: @sometic/http. Depends on @sometic/core.

Prefer TanStack Query when you need its plugin/devtools depth and are React-only. Prefer SWR for a React SWR mental model. Do not store session tokens or form drafts in the query cache; clear privileged caches on logout via app-shell / bindQueryToAuth.

Docs

License

MIT