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

@samline/debounce

v0.1.0

Published

A multi-entrypoint debounce utility for vanilla JavaScript, React, Vue, Svelte, and browser globals.

Downloads

9

Readme

@samline/debounce

A debounce utility with a shared core and dedicated entrypoints for vanilla JavaScript, React, Vue, Svelte, and direct browser usage.

Table of Contents

Installation

npm install @samline/debounce
pnpm add @samline/debounce
yarn add @samline/debounce
bun add @samline/debounce

CDN / Browser

Use the browser bundle directly when you do not want a bundler.

<script src="https://unpkg.com/@samline/[email protected]/dist/browser/debounce.global.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@samline/[email protected]/dist/browser/debounce.global.js"></script>

The global build exposes window.Debounce.

Entrypoints

| Import | Purpose | | --- | --- | | @samline/debounce | Root debounce API | | @samline/debounce/vanilla | Explicit vanilla entrypoint | | @samline/debounce/react | React hooks for callbacks and values | | @samline/debounce/vue | Vue composables for callbacks and refs | | @samline/debounce/svelte | Svelte helpers and stores | | dist/browser/debounce.global.js | Browser global bundle exposing window.Debounce |

Quick Start

The root import exposes the shared debounce API.

import { debounce } from "@samline/debounce";

const save = debounce(
  (value: string) => {
    console.log("saved", value);
  },
  200,
  { leading: false, trailing: true, maxWait: 1000 }
);

save("hello");
save.cancel();

You can force a pending invocation immediately:

const commit = debounce(saveToServer, 300);

commit("draft");
commit.flush();

API

The root and vanilla entrypoints export:

  • debounce
  • createDebounce
  • DebounceOptions
  • DebouncedFunction

debounce

debounce(fn, wait, options?)

Creates a debounced function that delays execution until the configured wait window is satisfied.

DebounceOptions

  • leading: invoke on the first call in a debounce window
  • trailing: invoke after the last call in a debounce window
  • maxWait: force execution after a maximum delay even if calls keep arriving

DebouncedFunction

Every debounced function exposes:

  • cancel(): drops the pending invocation
  • flush(): executes the pending invocation immediately and returns its result when available

Supported Locales

This package is locale-independent. It does not ship locale tables, translations, or locale-specific behavior.

Documentation

Framework-specific usage is documented in:

License

MIT. See LICENSE.