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

@sghere/react-confirm

v1.0.4

Published

✨ A zero-setup, Promise-based confirm dialog for React — beautifully simple and type-safe.

Downloads

22

Readme

⚡️ @sghere/react-confirm

A zero-setup, Promise-based confirm dialog for React — lightweight, type-safe, and beautifully styled with Tailwind CSS.

npm version License: MIT Build TypeScript React


✨ Features

  • 🧩 Zero configuration — works out of the box.
  • ⚛️ Fully compatible with React 16+ and 18.
  • 💬 Promise-based API: await confirm({...})
  • 🧠 Type-safe with ConfirmOptions support.
  • 🎨 Tailwind-ready styling — easily themeable.
  • 🪶 Lightweight — under 5 KB gzipped.

📦 Installation

npm install @sghere/react-confirm
# or
yarn add @sghere/react-confirm
# or
bun add @sghere/react-confirm

⚠️ Requires react and react-dom as peer dependencies.


🚀 Quick Start

1️⃣ Import and use

import { confirm } from "@sghere/react-confirm";
import "@sghere/react-confirm/dist/react-confirm.css";

// Example usage
<button
  onClick={() => {
    confirm({
      heading: "Are you sure?",
      body: "This will be deleted",
      onConfirm: () => {
        alert("Deleted ✅");
      },
    });
  }}
>
  Delete Item
</button>

2️⃣ Default Look

| Element | Default Text | |----------|---------------| | Heading | “Confirmation” | | Message | “Are you sure you want to continue?” | | Confirm Button | “Confirm” | | Cancel Button | “Cancel” |


⚙️ Props (ConfirmOptions)

| Prop | Type | Default | Description | |------|------|----------|-------------| | heading | React.ReactNode | "Confirmation" | Dialog title | | body | React.ReactNode | undefined | Optional content above message | | message | string | "Are you sure you want to continue?" | Main dialog text | | confirmText | string | "Confirm" | Text for confirm button | | cancelText | string | "Cancel" | Text for cancel button | | onConfirm | (e) => void | undefined | Confirm callback | | onCancel | (e) => void | undefined | Cancel callback | | footer | (actions) => React.ReactNode | undefined | Custom footer renderer with handlers |


🎨 Styling

@sghere/react-confirm is Tailwind-ready — include its default stylesheet or use your own theme.

Include Default CSS

import "@sghere/react-confirm/dist/react-confirm.css";

🧪 Development

bun install
bun run build
bun run dev

To test locally before publishing:

npm pack
npm install ../react-confirm/react-confirm-1.0.0.tgz

🧱 Tech Stack

  • ⚛️ React 18
  • 🎨 Tailwind CSS 4
  • 🧩 TypeScript 5
  • ⚡️ Bundled with TSUP

📄 License

MIT © Shubham Gaikwad


🤝 Contributing

  1. Fork this repository
  2. Create a new feature branch
  3. Commit using Conventional Commits (feat:, fix:, etc.)
  4. Push and open a Pull Request 🎉

🌍 Links