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 🙏

© 2025 – Pkg Stats / Ryan Hefner

hookdle

v1.2.1

Published

> React 프로젝트에 바로 쓸 수 있는 실용적인 커스텀 훅 모음

Downloads

160

Readme

🪝 Hookdle

React 프로젝트에 바로 쓸 수 있는 실용적인 커스텀 훅 모음

📦 설치

npm install hookdle

# or

yarn add hookdle

# or

pnpm add hookdle

🚀 빠른 시작 예시

import { useBooleanState, useDebounce } from 'hookdle';

function App() {
  const [isOpen, open, close, toggle] = useBooleanState(false);
  const debouncedValue = useDebounce(searchTerm, 500);

  // ...
}

📖 훅 목록

| 카테고리 | 훅 이름 | 설명 | | ------------------- | ------------------- | -------------------------------- | | State 관리 | useArrayState | 배열 상태 관리 | | | useBooleanState | boolean 상태 관리 | | | useCounter | 카운터 관리 | | | useStorageState | localStorage/sessionStorage 연동 | | | usePrevious | 이전 값 추적 | | 비동기 & 이벤트 | useDebounce | 디바운스 | | | useAsyncLock | 비동기 작업 잠금 | | | useEventListener | 이벤트 리스너 | | | useIdle | 비활성 감지 | | UI & 인터랙션 | useHover | 호버 상태 | | | useOutsideClick | 외부 클릭 감지 | | | useMeasure | 엘리먼트 크기 | | | useScrollPosition | 스크롤 위치 | | | useMouseFollower | 마우스 추적 | | | useLockBodyScroll | 스크롤 잠금 | | 미디어 & 반응형 | useMediaQuery | 미디어 쿼리 | | | useDarkMode | 다크 모드 | | 고급 패턴 | useFunnel | 퍼널 플로우 | | | useInfiniteScroll | 무한 스크롤 | | | usePagination | 페이지네이션 | | | useDocumentTab | 문서 탭 관리 | | 유틸리티 | useIsMountedRef | 마운트 상태 | | | useSingleEffect | 단일 실행 effect | | | useUpdateEffect | 업데이트 effect | | | useTextClipboard | 클립보드 |

📋 요구사항

  • React: ^18.0.0 이상
  • TypeScript: ^5.0.0 이상 (선택사항, 타입 정의 포함)

💡 hookdle은 외부 의존성이 없으며, React만 있으면 바로 사용할 수 있습니다.

📚 상세 문서

전체 문서와 API 레퍼런스는 Hookponent 공식 문서에서 확인하세요.

🤝 기여

이 프로젝트는 Hookponent 스터디에서 관리됩니다. 기여는 언제나 환영합니다!

📄 라이선스

MIT © Hookponent Team