TypeScript Reacthooks

Open-source TypeScript projects categorized as Reacthooks

Top 5 TypeScript Reacthook Projects

  1. reactuse

    Collection of essential React Hooks Utilities.

    Project mention: A usePrevious Hook Disaster Story | dev.to | 2025-07-29

    import { useState } from 'react' // Following these issues I think this is the best way to implement usePrevious: // https://github.com/childrentime/reactuse/issues/115 // https://github.com/streamich/react-use/issues/2605 // https://github.com/alibaba/hooks/issues/2162 export function usePrevious(value: T): T | undefined { const [current, setCurrent] = useState(value) const [previous, setPrevious] = useState() if (value !== current) { setPrevious(current) setCurrent(value) } return previous }

  2. Civic Auth

    Web2 & Web3 login in a simple SDK. Drop Civic Auth into your app with native TS/JS support. Email login, SSO options, embedded wallets, and full session management. Minimal config. Deploy in under 5 minutes.

    Civic Auth logo
  3. react-fetching-library

    Simple and powerful API client for react 👍 Use hooks or FACCs to fetch data in easy way. No dependencies! Just react under the hood.

  4. Jooks (Jest ❤ + Hooks 🤘🏻)

    Testing hooks with Jest

  5. use-pagination-firestore

    🔥 React hook for non-cumulative pagination of Firebase Firestore collections

  6. react-intersection-revealer

    An easy-to-use React hook that tells you whether a component/element is visible on the viewport currently, and if yes, how much of it is visible.

  7. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build dynamic JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.

    SurveyJS logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

TypeScript Reacthooks discussion

Log in or Post with

TypeScript Reacthooks related posts

  • A usePrevious Hook Disaster Story

    4 projects | dev.to | 29 Jul 2025
  • Demystifying the JS Event Loop: A ByteDance Interview Question to Deeply Understand async/await, Promise, and RAF

    1 project | dev.to | 28 Jul 2025
  • What is Tearing in React Concurrent Mode

    1 project | dev.to | 27 Jul 2025
  • use-pagination-firestore: A typed, non-cumulative pagination hook for Firestore

    2 projects | /r/reactjs | 7 Mar 2021

Index

What are some of the best open-source Reacthook projects in TypeScript? This list will help you:

# Project Stars
1 reactuse 936
2 react-fetching-library 623
3 Jooks (Jest ❤ + Hooks 🤘🏻) 84
4 use-pagination-firestore 26
5 react-intersection-revealer 2

Sponsored
Web2 & Web3 login in a simple SDK
Drop Civic Auth into your app with native TS/JS support. Email login, SSO options, embedded wallets, and full session management. Minimal config. Deploy in under 5 minutes.
www.civic.com

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?