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

@patch-kit/toast

v1.3.0

Published

Toast Engine for React

Readme

@patch-kit/toast

A Toast Engine built with Zustand and React.

This toast focuses on being a purely technical engine — its only job is to handle queuing, placement, auto-dismiss, and lifecycle. The application remains fully in control of every visual decision by providing its own styled component.

Interactive demo: Default


Folder contents

  • useToast.tsx — Zustand store, createToast factory, and shared toast types.
  • ToastRenderer.tsx — Root renderer that portals the toast stack and manages placement.
  • ToastItem.tsx — Single toast instance with auto-dismiss timer.

Exports

  • createToast — Factory that returns a type-locked useToast hook and ToastRenderer.
  • ToastItemProps — Props type for your custom toast component.

Usage

1. Create your toast instance

Call createToast once at the app level with your type union. This locks T across both the hook and the renderer.

// lib/toast.ts
import { createToast } from "@patch-kit/toast";

export const { useToast, ToastRenderer } = createToast<"success" | "error" | "warning">();

2. Mount the renderer

// layout.tsx
import { ToastRenderer } from "@/lib/toast";
import { MyToast } from "@/components/MyToast";

export default function Layout({ children }) {
  return (
    <>
      {children}
      <ToastRenderer component={MyToast} placement="bottom-right" duration={4000} />
    </>
  );
}

3. Fire toasts from anywhere

import { useToast } from "@/lib/toast";

const { toast } = useToast();

toast("Saved successfully", "success");
toast("Something went wrong", "error");

4. Build your component

ToastItemProps is typed to the union you passed to createToast.

// components/MyToast.tsx
import type { ToastItemProps } from "@patch-kit/toast";

export function MyToast({ content, type, closeToast }: ToastItemProps<"success" | "error" | "warning">) {
  return (
    <div className={type === "error" ? "bg-red-500" : "bg-green-500"}>
      {content}
      <button onClick={closeToast}>✕</button>
    </div>
  );
}

ToastRenderer props

| Prop | Type | Default | Description | |---|---|---|---| | component | ComponentType<ToastItemProps<T>> | required | Your styled toast component | | placement | ToastPlacement | "bottom-right" | Where toasts appear on screen | | duration | number | 4000 | Auto-dismiss delay in ms | | offset | number | 16 | Distance from the screen edge in px | | limit | number | — | Max number of toasts visible at once | | onOpen | () => void | — | Fired when any toast opens | | onClose | () => void | — | Fired when any toast closes |

Placements: top-left · top-center · top-right · bottom-left · bottom-center · bottom-right


useToast

const { toast, closeAllToasts } = useToast();

toast(content, type, options?)

T is already bound from createToast — no generic needed at the call site.

Per-toast options override the renderer defaults:

toast("Uploading…", "warning", { duration: undefined }); // stays until manually closed

| Option | Type | Description | |---|---|---| | duration | number \| undefined | Override auto-dismiss. undefined = never auto-close | | onOpen | () => void | Fired when this specific toast opens | | onClose | () => void | Fired when this specific toast closes |