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

@strangecyan/vignette-frame

v0.4.1

Published

Typed React DOM frames with Vite SSR and hydration for Vignette browser sources.

Readme

@strangecyan/vignette-frame

Typed React DOM frames that become ordinary browser sources in Vignette snapshots. A frame is server-rendered and hydrated as an independent React root, so hooks and client state remain local to that browser source.

Install

pnpm add @strangecyan/vignette-frame @strangecyan/vignette-vite react react-dom vite

Define and place a frame

import { createSceneStore, frame, SceneProvider, View } from "@strangecyan/vignette-frame";
import { z } from "zod";

export const LowerThird = frame({
  params: z.object({ name: z.string() }),
  view: ({ name }) => <div>Hello {name}</div>,
});

export function Overlay() {
  return (
    <SceneProvider scene={createSceneStore({ origin: "https://example.com" })}>
      <View source={LowerThird} params={{ name: "Ada" }} />
    </SceneProvider>
  );
}

Export frame definitions from modules processed by the Vite plugin:

import { vignette } from "@strangecyan/vignette-vite";
import { defineConfig } from "vite";

export default defineConfig({ plugins: [vignette()] });

./server provides FrameRouteRegistry, pure rendering kernels, and a Fetch API handler over a static frame bundle. ./server/node adds a Node HTTP adapter. ./transform exposes the source transform and ./client exports the hydration helper. Applications own routing and transport.

Stream live state to a frame

Frame parameters are part of the browser source URL. Use a remote store for live state that should update without reloading the frame. Define one typed reference in code shared by the application server and frame:

import { defineRemoteStore } from "@strangecyan/vignette-frame/remote-store";

import type { CompositionStore } from "./composition-store";

export const compositionStore = defineRemoteStore<CompositionStore>({
  id: "composition",
  url: "/api/store/composition",
});

The application owns the endpoint URL and SSE response. The server helper yields an initial context snapshot followed by conflated live updates:

import { encodeRemoteStoreSnapshot } from "@strangecyan/vignette-frame/remote-store";
import { remoteStoreSnapshots } from "@strangecyan/vignette-frame/remote-store/server";

for await (const snapshot of remoteStoreSnapshots(store, request.signal)) {
  await stream.writeSSE({ data: encodeRemoteStoreSnapshot(snapshot) });
}

Read the state inside a hydrated frame. The hook suspends during server rendering and until the browser receives its first snapshot, so render it beneath a Suspense boundary:

import { useRemoteStore } from "@strangecyan/vignette-frame/remote-store/client";
import { Suspense } from "react";

function Title() {
  return (
    <Suspense fallback={null}>
      <LiveTitle />
    </Suspense>
  );
}

function LiveTitle() {
  const title = useRemoteStore(compositionStore, (snapshot) => snapshot.context.title);
  return <div>{title}</div>;
}

Hosts that cannot run the transform can provide supported metadata directly with frame({ metadata, params, view }).

Frame parameters must be serializable and are parsed on both placement and request. Keep frame modules browser-safe. The configured public origin must be reachable by every browser and OBS host that renders the source.