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

@designforge/hooks

v1.0.0

Published

[![npm](https://img.shields.io/npm/v/@designforge/hooks?color=6d28d9)](https://www.npmjs.com/package/@designforge/hooks) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](../../LICENSE)

Readme

@designforge/hooks

npm License: MIT

5 production-grade React hooks used throughout the DesignForge component library. SSR-safe, fully typed, zero dependencies beyond React.

Installation

npm install @designforge/hooks

Peer dependency: react >=19.0.0

Hooks

useDebounce

Returns a debounced copy of value that only updates after delay ms of inactivity.

import { useDebounce } from '@designforge/hooks'

function SearchInput() {
  const [query, setQuery] = useState('')
  const debouncedQuery = useDebounce(query, 300)

  useEffect(() => {
    if (debouncedQuery) fetchResults(debouncedQuery)
  }, [debouncedQuery])

  return <input value={query} onChange={e => setQuery(e.target.value)} />
}

Signature: useDebounce<T>(value: T, delay?: number): T

| Param | Type | Default | Description | |---|---|---|---| | value | T | — | Value to debounce | | delay | number | 500 | Debounce delay in ms |


useMediaQuery

Returns true when a CSS media query matches. SSR-safe (returns false on the server).

import { useMediaQuery } from '@designforge/hooks'

function Layout() {
  const isMobile = useMediaQuery('(max-width: 768px)')
  const prefersReducedMotion = useMediaQuery('(prefers-reduced-motion: reduce)')

  return <nav className={isMobile ? 'mobile-nav' : 'desktop-nav'} />
}

Signature: useMediaQuery(query: string): boolean


useClipboard

Copies text to the clipboard with transient copied state. Falls back to execCommand for older browsers.

import { useClipboard } from '@designforge/hooks'

function CopyButton({ code }: { code: string }) {
  const { copied, copy } = useClipboard({ timeout: 1500 })

  return (
    <button onClick={() => copy(code)}>
      {copied ? 'Copied!' : 'Copy'}
    </button>
  )
}

Signature: useClipboard(options?: UseClipboardOptions): UseClipboardReturn

interface UseClipboardOptions {
  timeout?: number              // ms before `copied` resets (default: 2000)
  onCopy?: (text: string) => void
  onError?: (error: Error) => void
}

interface UseClipboardReturn {
  copied: boolean               // true for `timeout` ms after a successful copy
  copy: (text: string) => Promise<boolean>
  reset: () => void
}

useLocalStorage

Reads and writes a typed value to localStorage. SSR-safe, syncs across tabs via the storage event.

import { useLocalStorage } from '@designforge/hooks'

function ThemeSwitcher() {
  const [theme, setTheme, removeTheme] = useLocalStorage('theme', 'light')

  return (
    <button onClick={() => setTheme(theme === 'light' ? 'dark' : 'light')}>
      Current: {theme}
    </button>
  )
}

Signature: useLocalStorage<T>(key: string, initialValue: T): [T, setter, remover]

| Return | Type | Description | |---|---|---| | [0] | T | Current stored value | | [1] | (value: T \| ((prev: T) => T)) => void | Setter (functional updates supported) | | [2] | () => void | Removes key from storage, resets to initialValue |


useControllable

Manages state that works in both controlled (value + onChange) and uncontrolled (defaultValue) modes — the same pattern used internally by all DesignForge form components.

import { useControllable } from '@designforge/hooks'

// Inside a custom form component:
function Toggle({ checked, defaultChecked, onCheckedChange }) {
  const [isChecked, setIsChecked] = useControllable({
    value: checked,
    defaultValue: defaultChecked ?? false,
    onChange: onCheckedChange,
  })

  return <button onClick={() => setIsChecked(!isChecked)} aria-pressed={isChecked} />
}

Signature: useControllable<T>(params): [T | undefined, (next: T) => void]

| Param | Description | |---|---| | value | Controlled value (consumer owns state) | | defaultValue | Initial value for uncontrolled mode | | onChange | Called with the new value in both modes |

License

MIT © 2026 Mayank — see LICENSE