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

@stealthscale/provider-viewport

v0.1.0

Published

Lays a subtree out for a stated width rather than the window's, and answers which breakpoint it is at.

Downloads

94

Readme

@stealthscale/provider-viewport

@stealthscale/provider-viewport lays a subtree out for a width you state rather than the window's. A catalogue states one to show a page as a phone sees it. A specification states one to render a component at a size without stubbing matchMedia.

The breakpoint hooks read the stated width before they read the window, so a catalogue drawing a phone beside a desktop lays each preview out at its own width. Outside a provider they read the window, which is what an ordinary application wants and why none of them insists on one above.

Install

pnpm add @stealthscale/provider-viewport

The package peers on @stealthscale/hooks, @stealthscale/theme and react.

Usage

Wrap the subtree and state the width in pixels.

import { ViewportProvider } from "@stealthscale/provider-viewport";

<ViewportProvider defaultWidth={390}>
  <Page />
</ViewportProvider>;

Omit defaultWidth to leave the window in charge until something states one. useViewport reads the width, the widths on offer, and the setter a toolbar drives.

import { useViewport } from "@stealthscale/provider-viewport";

export function SizeToolbar() {
  const { setWidth, sizes, width } = useViewport();

  return sizes.map(({ min, name }) => (
    <button key={name} aria-pressed={width === min} onClick={() => setWidth(min)}>
      {name}
    </button>
  ));
}

A toolbar drawn above the provider keeps the width in its own state instead. Pass width and set it from onWidthChange, the way every controllable component here takes a value. The subtree reads the new width on the next render, and the setter calls onWidthChange rather than moving the width itself.

const [width, setWidth] = useState<number | undefined>(390);

<ViewportProvider onWidthChange={setWidth} width={width}>
  <Page />
</ViewportProvider>;

Reading the breakpoint

useBreakpoint returns the widest breakpoint that starts at or under the width. Name the ones that count, because only those are matched. A name is a Breakpoint, which is base or one the design system's vocabulary states, so a misspelt one is refused where it is written.

const at = useBreakpoint({ breakpoints: ["base", "md", "lg"] });

State a value per breakpoint and useBreakpointValue picks the one in force. Key it by name or list it in the theme's order, with null for a gap. A breakpoint that states nothing takes the nearest narrower one's value, which is how a value stated for base and md alone holds at lg.

const columns = useBreakpointValue({ base: 1, md: 2, xl: 4 });
const gap = useBreakpointValue([2, null, 4]);

The window is read the way the styling engine reads it, one min-width query per breakpoint, so a component and its stylesheet switch at the same pixel. Both hooks return the fallback on a server and read the window after the first render, which keeps a server's markup and the client's first paint the same. Pass ssr: false to read the window on the first render instead.

Warning: a style prop such as { base: 1, md: 2 } compiles to a media query, and a browser matches that query against the window. The stated width never affects it. Switch a block that has to follow the provider with useBreakpointValue rather than with a style prop.

Measuring an element

useNarrow measures the element rather than the window, so a page beside an open sidebar reports its own width.

const ref = useRef<HTMLElement>(null);
const narrow = useNarrow(ref, 600);

The element is measured once it is laid out and again whenever its size changes, and an element that arrives after the first layout is measured when it arrives. Before it is measured, and while the ref holds nothing, the result comes from the viewport: narrow under md, which is what a phone is, so a phone never lays out wide first. Pass a third argument to assume narrow under a different breakpoint.

Reference

| Export | Signature | | -------------------- | ------------------------------------------------------------------- | | ViewportProvider | (props: ViewportProviderProps) => ReactElement | | useViewport | () => ViewportContextValue | | useBreakpoint | (options?: UseBreakpointOptions) => Breakpoint | | useBreakpointValue | <Value>(value: Responsive<Value>, options?) => undefined \| Value | | useNarrow | (ref, width: number, below?: Breakpoint) => boolean | | sizesOf | () => readonly Size[] | | pixelsOf | (length: null \| string \| undefined) => number | | BASE_SIZE | Size |

sizesOf reads the widths the design system's breakpoints start at, narrowest first, and leaves base out because it starts at nothing and has no token. The list is built once, because the vocabulary does not change while a page runs. A provider offers these unless it is given its own sizes.

pixelsOf reads a length the way the styling engine writes one. The engine keeps its breakpoints in rem and compiled its queries against a root font size of sixteen pixels, so that is the number used here rather than the document's own.

Note: a breakpoint is read from the compiled vocabulary rather than from a theme. A theme that moved one would move it for every component written against the foundation, so the compiler's preset states them and a theme leaves them alone.

Licence

MIT. See LICENSE.