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

@ibaraness/page-stack

v0.1.5

Published

A lightweight React navigation stack — push/pop pages with animated transitions.

Readme

@ibaraness/page-stack

A lightweight React navigation stack — push/pop string page ids with animated slide transitions. Works fully in-memory (sliders, wizards, previews) or synced to the browser history API. Built with TypeScript; slide animations use motion, styling uses Tailwind CSS.

import {
  InMemoryPageStackProvider,
  PageStackOutlet,
  usePageStackCore,
} from "@ibaraness/page-stack";

Features

  • 📚 Imperative pushPage / popPage / replacePageStack / resetPageStackToRoot
  • 🧠 Headless engine (usePageStackEngine) — bring your own renderer, or use PageStackOutlet
  • 🌐 Optional browser history.state sync (stack + per-page meta) via createBrowserHistoryPersistence
  • ♻️ Synchronous history hydration — first render restores the saved stack (no flash of initialPageId)
  • 🎬 Forward/back slide transitions out of the box
  • 🔠 Fully typed, generic over your page-id union

Installation

npm install @ibaraness/page-stack

Peer dependencies:

| Package | Required for | | -------------------- | ------------------------------------------ | | react, react-dom | Providers, hooks (>= 18) | | motion | PageStackOutlet slide animations only * |

* motion (^12.38.0) is an optional peer dependency. If you render the active page yourself instead of using PageStackOutlet, you don't need it.

Styling with Tailwind

PageStackOutlet uses a few Tailwind utility classes. Either:

  • You use Tailwind — scan this package in your CSS (Tailwind v4):
@import "tailwindcss";
@source "../node_modules/@ibaraness/page-stack/dist";
  • You don't use Tailwind — import the prebuilt stylesheet once:
import "@ibaraness/page-stack/styles.css";

Quick start (in-memory wizard / slider)

"use client";

import {
  InMemoryPageStackProvider,
  PageStackOutlet,
  usePageStackCore,
} from "@ibaraness/page-stack";

type PageId = "intro" | "details" | "done";
const isPageId = (id: string): id is PageId =>
  id === "intro" || id === "details" || id === "done";

function Intro() {
  const { pushPage } = usePageStackCore<PageId>();
  return <button onClick={() => pushPage("details")}>Next</button>;
}

function Details() {
  const { pushPage, popPage, canGoBack } = usePageStackCore<PageId>();
  return (
    <>
      {canGoBack && <button onClick={() => popPage()}>Back</button>}
      <button onClick={() => pushPage("done")}>Finish</button>
    </>
  );
}

function Done() {
  const { resetPageStackToRoot } = usePageStackCore<PageId>();
  return <button onClick={() => resetPageStackToRoot()}>Start over</button>;
}

const pages = {
  intro: Intro,
  details: Details,
  done: Done,
} satisfies Record<PageId, React.ComponentType>;

export function Wizard() {
  return (
    <InMemoryPageStackProvider
      config={{ initialPageId: "intro", isValidPageId: isPageId }}
    >
      <PageStackOutlet pages={pages} />
    </InMemoryPageStackProvider>
  );
}

Browser history mode

Use this when the stack should survive refresh, deep links, and the device back button — for example a mobile-style app shell where each screen is a history entry.

In-memory vs browser

| | InMemoryPageStackProvider | BrowserHistoryPageStackProvider | | --- | --- | --- | | URL / history | Unchanged | pushState / replaceState on each stack change | | popPage() | Shrinks React state only | Calls history.back(); stack syncs in popstate | | resetPageStackToRoot() | Collapses stack in memory | history.go(-stepsBack) when stack depth is greater than 1 | | Back button | No effect on stack | Restores stack + meta from history.state | | First render | Always initialPageId | Client-only: hydrates from history.state before paint. SSR: server shows initialPageId; client corrects in useLayoutEffect |

The navigation hooks (usePageStackCore) are the same in both modes — only the provider and persistence layer differ.

Quick start (browser + createBrowserHistoryPersistence)

createBrowserHistoryPersistence is the built-in adapter: it reads and writes the page id array and per-page meta on window.history.state. Pair it with BrowserHistoryPageStackProvider.

"use client";

import {
  BrowserHistoryPageStackProvider,
  createBrowserHistoryPersistence,
  PageStackOutlet,
  usePageStackCore,
} from "@ibaraness/page-stack";

type PageId = "home" | "profile" | "settings";

const PAGE_IDS: PageId[] = ["home", "profile", "settings"];
const isPageId = (id: string): id is PageId =>
  (PAGE_IDS as string[]).includes(id);

const config = { initialPageId: "home" as const, isValidPageId: isPageId };

function Home() {
  const { pushPage } = usePageStackCore<PageId>();
  return (
    <button onClick={() => pushPage("profile", { from: "home" })}>
      Profile
    </button>
  );
}

function Profile() {
  const { pushPage, popPage, canGoBack } = usePageStackCore<PageId>();
  return (
    <>
      {canGoBack && <button onClick={() => popPage()}>Back</button>}
      <button onClick={() => pushPage("settings")}>Settings</button>
    </>
  );
}

function Settings() {
  const { resetPageStackToRoot } = usePageStackCore<PageId>();
  return <button onClick={() => resetPageStackToRoot()}>Home</button>;
}

const pages = {
  home: Home,
  profile: Profile,
  settings: Settings,
} satisfies Record<PageId, React.ComponentType>;

export function AppShell() {
  return (
    <BrowserHistoryPageStackProvider
      config={config}
      persistence={createBrowserHistoryPersistence(config)}
    >
      <PageStackOutlet pages={pages} />
    </BrowserHistoryPageStackProvider>
  );
}

On first mount, the engine hydrates synchronously from history.state (via readHydratedState) so the first render shows the saved screen — not a flash of initialPageId. If no stack is stored yet, initialize seeds [initialPageId] with replaceState. Each pushPage appends an id (and optional meta) and calls pushState; popPage delegates to history.back() and updates React state when popstate fires.

Hydration is treated as kind: "restore": PageStackOutlet skips the forward enter animation on that first paint.

Next.js App Router (SSR)

"use client" alone is not enough — the App Router still server-pre-renders client components. The engine uses useSyncExternalStore with getServerSnapshot so the server and the client's hydration pass both render [initialPageId], avoiding React hydration mismatches. Saved stacks are applied in useLayoutEffect via initialize (before paint). No dynamic(..., { ssr: false }) wrapper is required.

| Phase | Stack / meta | | --- | --- | | Server render | [initialPageId] via getServerSnapshot | | Client hydration (first pass) | [initialPageId] — matches server HTML | | Client useLayoutEffect | initialize restores from history.state when present | | Client-only apps (Vite, CRA) | Synchronous hydrate via readHydratedState on first render (unchanged) |

Hydration from history is still navigationKind: "restore" (no forward enter animation).

Optional: use dynamic(() => import("./AppShell"), { ssr: false }) only if you want zero server HTML for the shell.

"use client";

import {
  BrowserHistoryPageStackProvider,
  createBrowserHistoryPersistence,
  PageStackOutlet,
} from "@ibaraness/page-stack";

export function AppShell({ pages }: { pages: Record<PageId, React.ComponentType> }) {
  return (
    <BrowserHistoryPageStackProvider
      config={config}
      persistence={createBrowserHistoryPersistence(config)}
    >
      <PageStackOutlet pages={pages} />
    </BrowserHistoryPageStackProvider>
  );
}

canUseBrowserHistory() is exported if you need the same guard in custom persistence layers.

What createBrowserHistoryPersistence does

Pass the same PageStackConfig you use on the provider (plus optional stackKey / metaKey):

createBrowserHistoryPersistence({
  initialPageId: "home",
  isValidPageId: isPageId,
  stackKey: "appStack", // optional; default DEFAULT_HISTORY_STACK_KEY ("appStack")
  metaKey: "appStackMeta", // optional; default DEFAULT_HISTORY_META_KEY ("appStackMeta")
});

| Persistence hook | Role | | --- | --- | | readHydratedState | Read stack + meta from history.state on client-only first render (SSR uses getServerSnapshot + initialize) | | initialize | Confirm stack/meta in React state, or seed [initialPageId] if missing. Returns hydrated stack/meta when restoring existing history (SSR path). | | commitStackChange | push / replacepushState; reset-replacereplaceState (stack + meta) | | popPage | window.history.back() (engine does not pop in memory first) | | resetPageStackToRoot | window.history.go(-stepsBack) when collapsing a deep stack | | handlePopState | Restore stack + meta from event.state, set slide direction, sync React state |

The stack and meta are stored on history.state as parallel arrays:

{
  appStack: ["home", "profile"],
  appStackMeta: [undefined, { from: "home" }], // aligned with appStack
}

pushPage(id, meta) appends meta for the new entry. The root entry has no push meta (undefined). Unrelated keys on history.state are preserved via shallow merge when writing.

Re-exported constants: DEFAULT_HISTORY_STACK_KEY ("appStack"), DEFAULT_HISTORY_META_KEY ("appStackMeta"). Override stackKey / metaKey if another library already uses those property names.

BrowserHistoryPageStackProvider props

<BrowserHistoryPageStackProvider
  config={{ initialPageId, isValidPageId }}
  persistence={createBrowserHistoryPersistence(config)}
>
  {children}
</BrowserHistoryPageStackProvider>
  • configinitialPageId and isValidPageId (same as in-memory mode).
  • persistence — any PageStackPersistence implementation. Use createBrowserHistoryPersistence for stack + meta sync; implement custom persistence when you also need reducers, session traces, or extra history.state fields.

Convenience alias: PageStackProvider accepts a single integration object that merges config + persistence methods (PageStackIntegration). Prefer BrowserHistoryPageStackProvider when config and persistence are defined separately.

Composing persistence (mergePageStackPersistence)

When the host app must persist more than the page stack (global store, flow snapshots, analytics), implement PageStackPersistence in your app and layer it on top of the browser adapter:

import {
  createBrowserHistoryPersistence,
  mergePageStackPersistence,
} from "@ibaraness/page-stack";

const config = { initialPageId: "home" as const, isValidPageId: isPageId };

const persistence = mergePageStackPersistence(
  createBrowserHistoryPersistence(config),
  {
    commitStackChange(ctx) {
      // e.g. sync Redux, save session trace — runs after base writes history
    },
    onCurrentPageChange(pageId) {
      // analytics, document title, etc.
    },
  },
);

// <BrowserHistoryPageStackProvider config={config} persistence={persistence} />

mergePageStackPersistence(base, overlay) calls both layers for readHydratedState, initialize, commitStackChange, and handlePopState. For popPage and resetPageStackToRoot, the overlay wins if it defines those methods; otherwise the base (browser) behavior runs.

Custom persistence with createHistoryStackUtils

If you cannot use createBrowserHistoryPersistence as-is, use the lower-level helpers (same stack key semantics):

import {
  createHistoryStackUtils,
  DEFAULT_HISTORY_META_KEY,
  DEFAULT_HISTORY_STACK_KEY,
} from "@ibaraness/page-stack";

const {
  stackKey,
  metaKey,
  sanitizeStack,
  sanitizeMeta,
  readStackFromHistory,
  readMetaFromHistory,
  buildNextMetaOnPush,
  mergeHistoryState,
} = createHistoryStackUtils({ initialPageId: "home", isValidPageId: isPageId });

Wire those inside your own PageStackPersistence (initialize, commitStackChange, handlePopState). See src/README.md for the portable folder copy guide and host-app patterns.

Browser mode: usePageStackCore behavior

| Member | Browser behavior | | --- | --- | | pushPage(id, meta?) | Appends id + meta, pushState with updated stack/meta | | popPage() | history.back() — stack + meta update on popstate | | replacePageStack(stack, meta?) | Replaces stack; uses pushState (new history entry) | | resetPageStackToRoot() | history.go(-n) when n > 0, else in-memory collapse | | stackMeta | Meta array aligned with pageStack (from history or pushPage) | | navigationDirection | Set from stack depth change on popstate | | navigationKind | "restore" on initial hydration (no enter animation); "push" / "pop" / … on navigation |

Invalid page ids passed to pushPage are still ignored (same as in-memory). The first entry of any stack must remain initialPageId after sanitization.

Public API

Providers

  • InMemoryPageStackProvider — headless stack, no URL changes (sliders, wizards).
  • BrowserHistoryPageStackProvider — stack synced to history.state via a persistence object.
  • PageStackProvider — browser provider that takes a single PageStackIntegration (config + persistence).

Hooks

  • usePageStackCore<TPageId>() — navigation controller (throws outside a provider).
  • usePageStackCoreOptional<TPageId>() — returns null outside a provider.
  • usePageStackEngine — the underlying headless state engine.

Rendering & transitions

  • PageStackOutlet — renders pages[currentPageId] with slide transitions (needs motion).
  • slideTransition, slideVariants — the default motion variants (override as needed).

Browser persistence

  • createBrowserHistoryPersistence, mergePageStackPersistence
  • canUseBrowserHistory, createHistoryStackUtils, DEFAULT_HISTORY_STACK_KEY, DEFAULT_HISTORY_META_KEY

usePageStackCore controller

| Member | Behavior | | --------------------------- | --------------------------------------------------------------------- | | currentPageId | Active screen (last id on the stack). | | pageStack | Full stack, e.g. ["intro", "details"]. | | stackMeta | Meta aligned with pageStack (optional; undefined until first meta). | | canGoBack | pageStack.length > 1. | | pushPage(id, meta?) | Append id if isValidPageId(id); optional opaque meta payload. | | popPage() | Remove the last id (no-op at root). In browser mode, calls back. | | replacePageStack(stack, meta?) | Replace the stack; first entry must be initialPageId. | | resetPageStackToRoot() | Collapse to [initialPageId] (backward animation). | | navigationDirection | 1 forward, -1 back — drives PageStackOutlet slides. | | navigationKind | Last change kind ("push", "pop", "restore", …). "restore" skips enter animation. | | stackKey | pageStack.join("/") — outlet animation key. |

Types

import type {
  Direction,
  PageStackConfig,
  PageStackContextValue,
  PageStackIntegration,
  PageStackPersistence,
  PageStackChangeContext,
  PageStackChangeKind,
  PageStackProviderProps,
  InMemoryPageStackProviderProps,
  BrowserHistoryPageStackProviderProps,
} from "@ibaraness/page-stack";

For copying the source tree into another repo (relative imports, folder layout), see src/README.md.

Local development

npm workspace: the package is at the root, a Vite playground lives in playground/.

npm install          # install root + playground deps
npm run playground   # start the Vite playground (aliased to ./src for HMR)
npm run build        # build the library → dist/ (ESM + CJS + .d.ts + styles.css)
npm run typecheck    # type-check the library
npm test             # run unit tests (Vitest)
npm run test:watch   # run tests in watch mode

Structure

.
├── src/                 # library source (your real implementation)
│   ├── index.ts         # public entry / exports
│   ├── PageStackContext.tsx
│   ├── PageStackOutlet.tsx
│   ├── usePageStackEngine.ts
│   ├── historyStack.ts
│   ├── slideTransition.ts
│   ├── browser/
│   ├── types.ts
│   └── index.css        # Tailwind entry → built to dist/styles.css
├── playground/          # Vite + Tailwind demo app
├── tsup.config.ts       # library build config (ESM + CJS + d.ts)
└── package.json

Publishing

npm run build
npm publish --access public

License

MIT © Idan Baraness