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

@stackra/state

v2.0.0

Published

Reactive state management for the Stackra framework — DI-managed TanStack Stores with optimistic mutations, cross-tab sync, realtime, and persistence.

Readme

@stackra/state

Reactive state management for the Stackra framework — DI-managed TanStack Store instances with optimistic mutations, cross-tab sync, realtime updates, and persistence.

@stackra/state owns the global-state / store leg. The store-backed query / server-state leg lives in the companion @stackra/query package, which builds on this one.

Install

pnpm add @stackra/state @tanstack/store @tanstack/react-store

Subpaths

| Import | Contents | | ------------------------ | --------------------------------------------------------------- | | @stackra/state | StateModule, StateRegistry, broadcasters, adapters, Store | | @stackra/state/react | useStore, useStoreValue, useStoreDispatch | | @stackra/state/testing | createMockStateRegistry, MockStateRegistry |

Writes live in @stackra/query. Optimistic store writes and server writes both go through useMutation there — @stackra/state owns reads and the store engine. For a purely local store write with no server call, use useStoreDispatch.

Quick start

import { Module } from "@stackra/container";
import { StateModule } from "@stackra/state";
import { THEME_STORE } from "@stackra/contracts";

@Module({
  imports: [
    StateModule.forRoot(),
    StateModule.forFeature({
      name: "theme",
      token: THEME_STORE,
      initialState: { mode: "system" },
      crossTab: true,
      persistence: "localStorage",
    }),
  ],
})
export class AppModule {}

Read reactively from React:

import { useStore, useStoreDispatch } from "@stackra/state/react";
import { THEME_STORE } from "@stackra/contracts";

function ThemeToggle() {
  const mode = useStore<ThemeState, string>(THEME_STORE, (s) => s.mode);
  const dispatch = useStoreDispatch<ThemeState>(THEME_STORE);

  return (
    <Button
      onPress={() =>
        dispatch((s) => ({ ...s, mode: s.mode === "light" ? "dark" : "light" }))
      }
    >
      {mode}
    </Button>
  );
}

For optimistic writes that persist to a server, use useMutation from @stackra/query with its optimistic option.

Reactive capabilities

StateModule.forFeature() accepts the full IStoreFeatureConfig from @stackra/contracts:

| Option | Default | Effect | | ---------------- | ---------------- | -------------------------------------------------------------------- | | optimistic | false | Enable optimistic mutation support. | | crossTab | true | Sync state across browser tabs (BroadcastChannel). | | realtime | false | Apply WebSocket updates from @stackra/realtime. | | persistence | "localStorage" | Persist to localStorage / sessionStorage, or false. | | updateStrategy | "instant" | How realtime updates land (instant/prompt/manual/next-open). |

Testing

import { createMockStateRegistry } from "@stackra/state/testing";

const registry = createMockStateRegistry();
registry.registerStore("theme", THEME_STORE, store);
expect(registry.getNames()).toContain("theme");
expect(registry.$.wasCalled("registerStore")).toBe(true);

License

MIT © Figentra L.L.C.