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

hook-kits

v1.2.7

Published

A lightweight, reusable React hooks library for modern apps using Next.js and React 18+.

Readme

Hook Kits

A lightweight collection of useful custom hooks for modern React development. Built for React 18+ and Next.js App Router.

Installation

npm install hook-kits
# or
yarn add hook-kits
# or
pnpm add hook-kits

Hooks

State

| Hook | Description | | ----------------------------- | -------------------------------------- | | useToggle | Toggle boolean state | | useCount | Counter with min/max limits | | useInput | Input / form state management | | usePrevious | Track previous render value | | useRafState | State update via requestAnimationFrame |

DOM & Interaction

| Hook | Description | | ----------------------------------------- | -------------------------------------------- | | useClickAway | Detect clicks outside an element | | useHover | Detect hover state | | useHotKeys | Detect keyboard shortcuts | | useLockBodyScroll | Lock body scroll | | useWheel | Detect mouse wheel events | | useResize | Observe element resize (ResizeObserver) | | useObserver | Detect viewport entry (IntersectionObserver) | | useLazyImageLoad | Lazy load images | | useScrollToTop | Scroll to top on dependency change |

Browser & Storage

| Hook | Description | | ----------------------------------------- | ------------------------------------ | | useLocalStorage | Read/write localStorage (SSR-safe) | | useSessionStorage | Read/write sessionStorage (SSR-safe) | | useCopyClipBoard | Copy text to clipboard | | useIsClient | Check if running on client side | | useMount | Check if component is mounted |

Utility

| Hook | Description | | --------------------------------------- | --------------------------------------------------- | | useEventCallback | Stable callback reference (prevents stale closures) |


API

useToggle

Manages boolean state.

const { isToggle, handleToggle, handleSetTrue, handleSetFalse, handleSetBoolean } = useToggle(initialState?: boolean);

| Return | Type | Description | | ------------------ | -------------------------- | -------------- | | isToggle | boolean | Current state | | handleToggle | () => void | Toggle state | | handleSetTrue | () => void | Set to true | | handleSetFalse | () => void | Set to false | | handleSetBoolean | (state: boolean) => void | Set directly |

import { useToggle } from 'hook-kits';

function ToggleExample() {
  const { isToggle, handleToggle } = useToggle(false);

  return <button onClick={handleToggle}>{isToggle ? 'ON' : 'OFF'}</button>;
}

useCount

Counter with a minimum of 1 and an optional maximum.

const { count, increase, decrease, handleChangeCount } = useCount({
  initialState?: number,   // default: 1
  limit?: number,          // max value
  onChange?: (value: number) => void,
});

| Return | Type | Description | | ------------------- | --------------------- | ------------- | | count | number | Current count | | increase | () => void | +1 | | decrease | () => void | -1 (min 1) | | handleChangeCount | (n: number) => void | Set directly |

import { useCount } from 'hook-kits';

function CountExample() {
  const { count, increase, decrease } = useCount({
    initialState: 1,
    limit: 10,
  });

  return (
    <div>
      <button onClick={decrease}>-</button>
      <span>{count}</span>
      <button onClick={increase}>+</button>
    </div>
  );
}

useInput

Manages single value or object-based form input.

const { value, handleInputChange, handleFieldChange, resetValue } = useInput(initialValue: T);

| Return | Type | Description | | ------------------- | -------------------------- | --------------------------------------- | | value | T | Current value | | handleInputChange | (e: ChangeEvent) => void | Update single value | | handleFieldChange | (e: ChangeEvent) => void | Update object field by name attribute | | resetValue | () => void | Reset to initial value |

import { useInput } from 'hook-kits';

function FormExample() {
  const { value, handleFieldChange, resetValue } = useInput({
    email: '',
    name: '',
  });

  return (
    <form>
      <input
        name='email'
        value={value.email}
        onChange={handleFieldChange}
      />
      <input
        name='name'
        value={value.name}
        onChange={handleFieldChange}
      />
      <button
        type='button'
        onClick={resetValue}
      >
        Reset
      </button>
    </form>
  );
}

usePrevious

Returns the value from the previous render.

const previousValue: T | undefined = usePrevious(value: T);
import { usePrevious } from 'hook-kits';
import { useState } from 'react';

function PreviousExample() {
  const [count, setCount] = useState(0);
  const prev = usePrevious(count);

  return (
    <div>
      <p>
        Current: {count} / Previous: {prev ?? 'N/A'}
      </p>
      <button onClick={() => setCount((c) => c + 1)}>+1</button>
    </div>
  );
}

useRafState

Updates state within requestAnimationFrame. Ideal for high-frequency updates like scroll or resize.

const { state, setRafState } = useRafState(defaultValue: T);

| Return | Type | Description | | ------------- | -------------------- | ---------------------- | | state | T | Current state | | setRafState | (value: T) => void | RAF-based state update |

import { useRafState } from 'hook-kits';

function RafExample() {
  const { state, setRafState } = useRafState(0);

  return <button onClick={() => setRafState(state + 1)}>Count: {state}</button>;
}

useClickAway

Detects clicks outside an element (mousedown, touchstart) and fires a callback. Useful for modals, dropdowns, and tooltips.

const ref = useClickAway<T extends HTMLElement>(onClick: (e?: MouseEvent | TouchEvent) => void);
import { useClickAway } from 'hook-kits';
import { useState } from 'react';

function DropdownExample() {
  const [open, setOpen] = useState(false);
  const ref = useClickAway<HTMLDivElement>(() => setOpen(false));

  return (
    <div>
      <button onClick={() => setOpen(true)}>Open</button>
      {open && (
        <div
          ref={(el) => {
            if (el) ref.current = el;
          }}
        >
          Click outside to close
        </div>
      )}
    </div>
  );
}

useHover

Detects hover state of an element.

const { ref, isHover } = useHover<T extends HTMLElement>();

| Return | Type | Description | | --------- | -------------- | ------------------------------------ | | ref | React.Ref<T> | Ref to attach to the target element | | isHover | boolean | Whether the element is being hovered |

import { useHover } from 'hook-kits';

function HoverExample() {
  const { ref, isHover } = useHover<HTMLDivElement>();

  return (
    <div
      ref={ref}
      style={{ background: isHover ? '#4caf50' : '#ccc' }}
    >
      {isHover ? 'Hovering!' : 'Hover me'}
    </div>
  );
}

useHotKeys

Detects keyboard shortcut combinations and fires a callback. Supports modifier keys (Ctrl, Shift, Alt, Meta) combined with a normal key, or each used alone.

useHotKeys({
  keys: ['Ctrl', 'S'],
  callback: () => { ... },
});

| Param | Type | Description | | ---------- | --------------------------------------------------------------- | ---------------------------------- | | keys | ModifierKey[] \| [NormalKey] \| [...ModifierKey[], NormalKey] | Key combination (case-insensitive) | | callback | () => void | Callback to invoke when matched |

  • Modifier + normal key['Ctrl', 'S'], ['Ctrl', 'Shift', 'K']
  • Normal key only['Escape'], ['Enter']
  • Modifier only['Ctrl'], ['Ctrl', 'Shift']
  • Calls preventDefault() automatically when matched
  • Exact match only — extra modifiers will not trigger the callback
import { useHotKeys } from 'hook-kits';

function SaveShortcut() {
  useHotKeys({
    keys: ['Ctrl', 'S'],
    callback: () => console.log('Saved!'),
  });

  return <p>Press Ctrl+S to save</p>;
}

function CloseModal() {
  useHotKeys({
    keys: ['Escape'],
    callback: () => console.log('Closed!'),
  });

  return <p>Press Escape to close</p>;
}

useLockBodyScroll

Locks body scroll by setting overflow: hidden. Useful for modals and drawers. Restores the original overflow value on unmount or when locked becomes false.

useLockBodyScroll(locked?: boolean); // default: true

| Param | Type | Description | | -------- | --------- | --------------------------------------- | | locked | boolean | Whether to lock scroll (default true) |

import { useLockBodyScroll } from 'hook-kits';
import { useState } from 'react';

function ModalExample() {
  const [open, setOpen] = useState(false);

  useLockBodyScroll(open);

  return (
    <div>
      <button onClick={() => setOpen(true)}>Open Modal</button>
      {open && (
        <div>
          <p>Modal Content</p>
          <button onClick={() => setOpen(false)}>Close</button>
        </div>
      )}
    </div>
  );
}

useScrollToTop

Scrolls to the top of the page whenever the given dependency changes. Router-agnostic — works with Next.js, React Router, or any value.

useScrollToTop(dependency: unknown);

| Param | Type | Description | | --- | --- | --- | | dependency | unknown | Scroll resets when this value changes |

// Next.js App Router
import { usePathname } from 'next/navigation';
import { useScrollToTop } from 'hook-kits';

function ScrollReset() {
  const pathname = usePathname();
  useScrollToTop(pathname);

  return null;
}
// React Router
import { useLocation } from 'react-router-dom';
import { useScrollToTop } from 'hook-kits';

function ScrollReset() {
  const { pathname } = useLocation();
  useScrollToTop(pathname);

  return null;
}

useWheel

Detects browser wheel events.

const { isWheel, handleWheelTrue, handleWheelFalse } = useWheel();

| Return | Type | Description | | ------------------ | ------------ | -------------------------- | | isWheel | boolean | Whether wheel is scrolling | | handleWheelTrue | () => void | Manually set to true | | handleWheelFalse | () => void | Manually set to false |

import { useWheel } from 'hook-kits';

function WheelExample() {
  const { isWheel } = useWheel();

  return <p>Wheel: {isWheel ? 'YES' : 'NO'}</p>;
}

useResize

Observes element size changes using ResizeObserver.

const { ref, rect } = useResize<T extends HTMLElement>();

| Return | Type | Description | | ------ | ------------------------- | ----------------------------------- | | ref | React.Ref<T> | Ref to attach to the target element | | rect | DOMRectReadOnly \| null | Current size and position |

import { useResize } from 'hook-kits';

function ResizeExample() {
  const { ref, rect } = useResize<HTMLDivElement>();

  return (
    <div
      ref={ref}
      style={{ width: '50%', resize: 'both', overflow: 'auto' }}
    >
      {rect?.width.toFixed(0)} x {rect?.height.toFixed(0)}
    </div>
  );
}

useObserver

Detects when an element enters the viewport using IntersectionObserver.

const { ref, isIntersecting } = useObserver<T extends HTMLElement>({
  root?: Element | null,
  rootMargin?: string,
  threshold?: number | number[],
  onIntersect: () => void,
});

| Return | Type | Description | | ---------------- | -------------- | -------------------------------------- | | ref | React.Ref<T> | Ref to attach to the observed element | | isIntersecting | boolean | Whether the element is in the viewport |

import { useObserver } from 'hook-kits';

function ObserverExample() {
  const { ref, isIntersecting } = useObserver({
    threshold: 0.5,
    onIntersect: () => console.log('Visible!'),
  });

  return (
    <div
      ref={ref}
      style={{ background: isIntersecting ? '#4caf50' : '#ddd' }}
    >
      {isIntersecting ? 'Visible' : 'Scroll to see'}
    </div>
  );
}

useLazyImageLoad

Lazy loads images when they enter the viewport using IntersectionObserver.

const { ref, loaded } = useLazyImageLoad({
  isLazy?: boolean,
  root?: Element | null,
  threshold?: number | number[],
  rootMargin?: string,
});

| Return | Type | Description | | -------- | ----------------------------- | ---------------------------------- | | ref | React.Ref<HTMLImageElement> | Ref to attach to the image element | | loaded | boolean | Whether the image has loaded |

import { useLazyImageLoad } from 'hook-kits';

function LazyImageExample() {
  const { ref, loaded } = useLazyImageLoad({ isLazy: true, threshold: 0.1 });

  return (
    <img
      ref={ref}
      data-src='https://picsum.photos/500'
      src={loaded ? 'https://picsum.photos/500' : undefined}
      alt='Lazy loaded'
    />
  );
}

useLocalStorage

Type-safe read/write for localStorage. SSR-safe.

const { value, setItem, removeItem } = useLocalStorage<T>(key: string, defaultValue: T);

| Return | Type | Description | | ------------ | ----------------------- | ------------------------------- | | value | T | Current stored value | | setItem | (newValue: T) => void | Store a value | | removeItem | () => void | Remove value (restores default) |

import { useLocalStorage } from 'hook-kits';

function ThemeExample() {
  const { value, setItem } = useLocalStorage('theme', 'light');

  return (
    <button onClick={() => setItem(value === 'light' ? 'dark' : 'light')}>
      Theme: {value}
    </button>
  );
}

useSessionStorage

Type-safe read/write for sessionStorage. SSR-safe.

const { value, setItem, removeItem } = useSessionStorage<T>(key: string, defaultValue: T);

| Return | Type | Description | | ------------ | ----------------------- | ------------------------------- | | value | T | Current stored value | | setItem | (newValue: T) => void | Store a value | | removeItem | () => void | Remove value (restores default) |

import { useSessionStorage } from 'hook-kits';

function SessionExample() {
  const { value, setItem, removeItem } = useSessionStorage('user', {
    name: 'Guest',
  });

  return (
    <div>
      <p>{value.name}</p>
      <button onClick={() => setItem({ name: 'Alice' })}>Set Alice</button>
      <button onClick={removeItem}>Reset</button>
    </div>
  );
}

useCopyClipBoard

Copies text to the clipboard using the Clipboard API.

const { copiedText, copy } = useCopyClipBoard();

| Return | Type | Description | | ------------ | --------------------------------- | ----------------- | | copiedText | string \| null | Last copied text | | copy | (text: string) => Promise<void> | Copy to clipboard |

import { useCopyClipBoard } from 'hook-kits';

function CopyExample() {
  const { copiedText, copy } = useCopyClipBoard();

  return (
    <div>
      <button onClick={() => copy('Hello!')}>Copy</button>
      <p>Copied: {copiedText ?? '-'}</p>
    </div>
  );
}

useIsClient

Returns true only on the client side. Prevents hydration mismatch in SSR environments.

const isClient: boolean = useIsClient();
import { useIsClient } from 'hook-kits';

function ClientOnly() {
  const isClient = useIsClient();

  if (!isClient) return null;
  return <p>Client only content</p>;
}

useMount

Returns true after the component has mounted.

const isMounted: boolean = useMount();
import { useMount } from 'hook-kits';

function MountExample() {
  const isMounted = useMount();

  return <p>Mounted: {isMounted ? 'YES' : 'NO'}</p>;
}

useEventCallback

Returns a stable callback reference that always points to the latest function. Prevents stale closures in useEffect and event listeners without adding the callback to dependency arrays.

const stableCallback = useEventCallback(callback?: T);
import { useEventCallback } from 'hook-kits';
import { useEffect, useState } from 'react';

function EventCallbackExample() {
  const [count, setCount] = useState(0);

  const log = useEventCallback(() => {
    console.log('count:', count); // always references latest count
  });

  useEffect(() => {
    const id = setInterval(log, 1000);
    return () => clearInterval(id);
  }, [log]);

  return <button onClick={() => setCount((c) => c + 1)}>Count: {count}</button>;
}

License

MIT