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

@actuallab/fusion-react

v14.3.34

Published

React integration for Fusion - hooks and UI action tracking

Readme

@actuallab/fusion-react

npm Documentation License

React hooks that plug Fusion's reactive states into React's rendering lifecycle — the TypeScript equivalent of ComputedStateComponent<T> in ActualLab.Fusion.Blazor. When server-side data changes and the invalidation reaches the client, your component re-renders. No polling, no manual subscriptions, no store wiring.

Installation

npm install @actuallab/fusion-react

Peer dependency: React ^19. ESM-first with a CJS fallback; ships its own .d.ts.

useComputedState

import { useComputedState } from '@actuallab/fusion-react';

function TodoList({ api }: { api: ITodoApi }) {
    const { value, error, isInitial } = useComputedState(
        () => api.ListIds('~', 10),
        [api],
    );

    if (isInitial) return <p>Loading...</p>;
    if (error) return <p>Error: {String(error)}</p>;
    return <ul>{value?.map(id => <li key={id}>{id}</li>)}</ul>;
}

Anything the computer calls becomes a dependency, so the hook re-runs when any of it is invalidated. deps works like React's — changing them disposes the old ComputedState and builds a new one.

The hook is built on useSyncExternalStore, and the state is created and disposed inside subscribe, never during render: StrictMode double-mounts and discarded concurrent renders are both safe. That's also why state is undefined on the very first, pre-effect render — guard on isInitial.

Pace recomputation with the updateDelayer option:

import { FixedDelayer, UIUpdateDelayer } from '@actuallab/fusion';

// 500 ms after invalidation…
useComputedState(() => api.GetSummary('~'), [api], { updateDelayer: FixedDelayer.get(500) });

// …but immediately while a UI action is running (or just finished)
useComputedState(() => api.GetSummary('~'), [api], { updateDelayer: UIUpdateDelayer.get(500) });

useMutableState

A manually-settable reactive value that both re-renders the component and participates in the Fusion dependency graph:

import { useComputedState, useMutableState } from '@actuallab/fusion-react';

function SearchResults({ api }: { api: ISearchApi }) {
    const { value: query, set: setQuery, state: queryState } = useMutableState('');

    const { value: results } = useComputedState(
        () => {
            const q = queryState.use();  // registers the dependency
            return q ? api.Search(q) : [];
        },
        [api, queryState],
    );

    return (
        <>
            <input value={query ?? ''} onChange={e => setQuery(e.target.value)} />
            <ul>{results?.map(r => <li key={r.id}>{r.title}</li>)}</ul>
        </>
    );
}

value reads through valueOrUndefined, so it never throws — an error stored with set(errorResult(e)) surfaces as error and re-renders normally instead of unmounting the tree.

API surface

| Export | Description | |--------|-------------| | useComputedState(computer, deps, options?) | Returns { value, error, isInitial, state } | | useMutableState(initial) | Returns { value, error, set, state } | | UIActionTracker, uiActions, UIUpdateDelayer | Re-exported from @actuallab/fusion for convenience |

For a connection-status banner, pair RpcPeerStateMonitor from @actuallab/rpc with a plain useState + useEffect — see the docs.

Documentation

License

MIT — see LICENSE.