Top 5 TypeScript Reacthook Projects
-
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 }
-
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.
-
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.
-
-
use-pagination-firestore
🔥 React hook for non-cumulative pagination of Firebase Firestore collections
-
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.
-
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.
TypeScript Reacthooks discussion
TypeScript Reacthooks related posts
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 |