Top Related Projects
A collection of awesome things regarding React ecosystem
Curated List of React Components & Libraries.
Awesome React Native components, news, tools, and learning material!
📋 React Hooks for form state management and validation (Web + React Native)
React Hooks — 👍
🤖 Powerful asynchronous state management, server-state utilities and data fetching for the web. TS/JS, React Query, Solid Query, Svelte Query and Vue Query.
Quick Overview
Awesome React Hooks is a curated list of React hooks resources, including tutorials, articles, and libraries. It serves as a comprehensive collection for developers looking to learn about and implement React hooks in their projects. The repository is community-driven and regularly updated with new and relevant content.
Pros
- Extensive collection of React hooks resources in one place
- Well-organized and categorized for easy navigation
- Regularly updated with new content and contributions
- Includes both educational materials and practical libraries
Cons
- May be overwhelming for beginners due to the large amount of information
- Some listed resources might become outdated over time
- Quality of individual resources may vary
- Lacks in-depth explanations or comparisons between different hooks
Code Examples
This repository is not a code library, but rather a curated list of resources. Therefore, there are no specific code examples to provide.
Getting Started
As this is not a code library, there are no specific getting started instructions. However, users can access the repository at https://github.com/rehooks/awesome-react-hooks and browse the various categories of resources listed there.
Competitor Comparisons
A collection of awesome things regarding React ecosystem
Pros of awesome-react
- Broader scope, covering various aspects of React ecosystem beyond hooks
- More comprehensive, with a larger collection of resources and tools
- Includes sections on React components, tutorials, and related libraries
Cons of awesome-react
- Less focused on React hooks specifically
- May be overwhelming for developers looking for hook-specific resources
- Updates less frequently than awesome-react-hooks
Code Comparison
awesome-react-hooks:
import { useState } from 'react';
function Counter() {
const [count, setCount] = useState(0);
return <button onClick={() => setCount(count + 1)}>{count}</button>;
}
awesome-react:
class Counter extends React.Component {
state = { count: 0 };
render() {
return (
<button onClick={() => this.setState({ count: this.state.count + 1 })}>
{this.state.count}
</button>
);
}
}
Summary
awesome-react-hooks is a focused repository specifically for React hooks, providing a curated list of resources, tutorials, and custom hooks. It's ideal for developers looking to deepen their understanding of hooks or find specific hook implementations.
awesome-react, on the other hand, is a more comprehensive resource covering the entire React ecosystem. It includes information on hooks but also extends to components, libraries, tools, and tutorials for React development in general.
Choose awesome-react-hooks for a targeted exploration of React hooks, or awesome-react for a broader overview of the React ecosystem.
Curated List of React Components & Libraries.
Pros of awesome-react-components
- Broader scope, covering a wide range of React components
- More comprehensive, with a larger collection of resources
- Includes UI libraries and toolkits, not just individual components
Cons of awesome-react-components
- Less focused on a specific aspect of React development
- May be overwhelming for developers looking specifically for hooks
- Requires more time to navigate and find relevant components
Code Comparison
awesome-react-components:
import { Button } from 'react-bootstrap';
function MyComponent() {
return <Button variant="primary">Click me</Button>;
}
awesome-react-hooks:
import { useState } from 'react';
function MyComponent() {
const [count, setCount] = useState(0);
return <button onClick={() => setCount(count + 1)}>{count}</button>;
}
Summary
awesome-react-components offers a comprehensive collection of React components, libraries, and tools, making it a valuable resource for developers seeking a wide range of UI solutions. However, its broad scope may be less suitable for those specifically interested in hooks.
awesome-react-hooks, on the other hand, provides a focused list of React hooks, making it easier for developers to find and implement specific hook-based solutions in their projects. While it may not cover the full spectrum of React components, it excels in its specialized area.
Awesome React Native components, news, tools, and learning material!
Pros of awesome-react-native
- Broader scope, covering various aspects of React Native development
- Larger community and more frequent updates
- Includes resources for both beginners and advanced developers
Cons of awesome-react-native
- Less focused on a specific topic, which may make it harder to find relevant information
- May include outdated or deprecated resources due to its broader scope
- Requires more maintenance to keep all sections up-to-date
Code comparison
awesome-react-hooks:
import { useState, useEffect } from 'react';
const useWindowSize = () => {
const [size, setSize] = useState([window.innerWidth, window.innerHeight]);
useEffect(() => {
const handleResize = () => setSize([window.innerWidth, window.innerHeight]);
window.addEventListener('resize', handleResize);
return () => window.removeEventListener('resize', handleResize);
}, []);
return size;
};
awesome-react-native:
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const MyComponent = () => (
<View style={styles.container}>
<Text style={styles.text}>Hello, React Native!</Text>
</View>
);
const styles = StyleSheet.create({
container: { flex: 1, justifyContent: 'center', alignItems: 'center' },
text: { fontSize: 18, fontWeight: 'bold' },
});
Summary
While awesome-react-hooks focuses specifically on React hooks, awesome-react-native covers a wider range of topics related to React Native development. The former is more targeted and easier to navigate for hook-related information, while the latter provides a comprehensive resource for React Native developers but may require more effort to find specific information.
📋 React Hooks for form state management and validation (Web + React Native)
Pros of react-hook-form
- Focused specifically on form handling, providing a comprehensive solution
- Performance-optimized with minimal re-renders
- Built-in validation and error handling
Cons of react-hook-form
- Limited to form-related functionality
- Steeper learning curve for complex form scenarios
- May be overkill for simple forms
Code Comparison
react-hook-form:
import { useForm } from "react-hook-form";
const { register, handleSubmit } = useForm();
const onSubmit = data => console.log(data);
<form onSubmit={handleSubmit(onSubmit)}>
<input {...register("firstName")} />
<input type="submit" />
</form>
awesome-react-hooks (using a custom hook):
import { useInput } from "./hooks";
const firstName = useInput("");
<form onSubmit={() => console.log(firstName.value)}>
<input {...firstName} />
<input type="submit" />
</form>
Summary
react-hook-form is a specialized library for handling forms in React applications, offering optimized performance and built-in features. awesome-react-hooks, on the other hand, is a curated list of various React hooks for different purposes, providing a broader range of functionality but less depth in specific areas like form handling.
While react-hook-form excels in complex form scenarios, awesome-react-hooks offers more flexibility for general-purpose hook usage. The choice between them depends on the specific needs of your project and the complexity of your forms.
React Hooks — 👍
Pros of react-use
- Comprehensive collection of ready-to-use hooks
- Well-documented with examples and TypeScript support
- Actively maintained with frequent updates
Cons of react-use
- Large package size due to numerous hooks
- May include unnecessary hooks for some projects
- Steeper learning curve due to extensive API
Code Comparison
react-use:
import { useToggle, useList } from 'react-use';
const [isOn, toggleOn] = useToggle(false);
const [list, { push, filter }] = useList([1, 2, 3]);
awesome-react-hooks:
// No direct code comparison available as awesome-react-hooks
// is a curated list of hooks from various sources
Key Differences
awesome-react-hooks is a curated list of React hooks from various sources, serving as a directory for developers to discover and explore different hook implementations. It doesn't provide hooks directly but links to external resources.
react-use, on the other hand, is a comprehensive library of ready-to-use React hooks. It offers a wide range of hooks for various purposes, all within a single package.
While awesome-react-hooks provides flexibility in choosing specific hooks from different sources, react-use offers convenience with its all-in-one approach. The choice between them depends on whether you prefer a curated list of resources or a complete package of pre-built hooks.
🤖 Powerful asynchronous state management, server-state utilities and data fetching for the web. TS/JS, React Query, Solid Query, Svelte Query and Vue Query.
Pros of Query
- Comprehensive data fetching and state management solution
- Built-in caching and automatic background refetching
- Extensive documentation and active community support
Cons of Query
- Steeper learning curve due to its more complex API
- Potentially overkill for simple projects or small-scale applications
- Requires additional setup and configuration
Code Comparison
Query:
const { data, isLoading, error } = useQuery('todos', fetchTodos)
if (isLoading) return <div>Loading...</div>
if (error) return <div>Error: {error.message}</div>
return <ul>{data.map(todo => <li key={todo.id}>{todo.title}</li>)}</ul>
awesome-react-hooks (using a basic fetch hook):
const [data, setData] = useState(null)
const [isLoading, setIsLoading] = useState(true)
const [error, setError] = useState(null)
useEffect(() => {
fetchTodos().then(setData).catch(setError).finally(() => setIsLoading(false))
}, [])
Summary
Query offers a more robust solution for data fetching and state management, with built-in caching and automatic refetching. However, it comes with a steeper learning curve and may be excessive for simpler projects. awesome-react-hooks, on the other hand, provides a collection of reusable hooks that can be easily integrated into existing projects, but may require more manual implementation for advanced features like caching and background updates.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
awesome-react-hooks
Awesome React Hooks Resources
Documentation
Discussions
Tutorials
- "Making Sense of React Hooks" by Dan Abramov
- "From React.Component to hooks" by Octave Raimbault
- "React Hooks: Whatâs going to happen to my tests?" by Kent C. Dodds
- "State Management with React Hooks - No Redux or Context API" by André Gardi
- "How to Fetch Data with React Hooks?" by Robin Wieruch
- Primer on React Hooks
- React Hooks - A deeper dive featuring useContext and useReducer
- "Using Custom React Hooks to Simplify Forms" by James King
- Testing of a Custom React Hook for Fetching Data with Axios
- The Guide to Learning React Hooks (Examples & Tutorials) by Eric Bishard
- "Sanely Testing React Hooks" by Dave Cooper
- React by Example: Hooks
Videos
- ð¬ ReactConf 2018: React Today and Tomorrow by Sophie Alpert and Dan Abramov Official announcement and first demo.
- ð¬ ReactConf 2018: 90% Cleaner React by Ryan Florence
- ð¬ React Hooks: A Complete Introduction by Harry Wolff
- ð¬ React Hooks playlist by Ben Awad
- ð¬ React Hooks playlist by Josh Ribakoff
- ð¬ React Hooks playlist by Michael Chan
- ð¬ Custom Hooks in React by Tanner Linsley
Podcasts
- React Hooks - Syntax (Nov 14th, 2018)
- React Hooks 1 Year Later - Syntax (Mar 18, 2020)
- Why should I use React Hooks? - Syntax (Dec 7th, 2020)
Tools
eslint-plugin-react-hooks
hooks.macro
Babel Macros for automatic memoization invalidation- CodeSandbox Starter Kit
- React Hooks Snippets for VS Code
hook-into-props
Helper to build HOCs using hooks. Useful for using hooks with class components.react-universal-hooks
React Universal Hooks: just use****** everywhere, Functional or Class Components- Jooks Unit-test your custom hooks by mocking React's Hooks API (useState, etc.)
react-hooks-testing-library
Library to create unit tests for custom React hooks.
Catalogs
- @react-hookz/web - A library of general-purpose React hooks built with care and SSR compatibility in mind.
- ahooks A collection of React Hooks specifically aiming at enterprise applications.
- beautiful-react-hooks(ð¥) A collection of hooks to speed-up your components and custom hooks development.
- Captain hook Modest list of hooks.
- crooks A collection of unique React Hooks.
- hooks-by-example Collection of beginner-friendly real world examples of hook usage.
- Hooks.guide Collection of React hooks curated by the community.
- react-recipes ð©âð³ Collection of essential hook recipes ð¥
- Searchable Collection of React Hooks
- Sunflower(ð») Collection of React Hooks returning components of antd.
- useHooks(ð ) One new React Hook recipe every day.
- Use Hooks A collection of reusable React Hooks.
Packages
@21kb/react-hooks
A set of React Hooks to get hooked on.@d2k/react-devto
React hook for Dev.to API requests@d2k/react-github
React hook for Github API requests@d2k/react-localstorage
React hook that handles updating and clearing localstorage values while keeping them in sync with your components.@elgorditosalsero/react-gtm-hook
React hook for handle easily the Google Tag Manager.@hookstate/core
Modern, very fast and extendable state management for React.@jzone/react-request-hook
ð¶React hook for custom requestï¼compatible with various lib, support redux@kevinwolf/formal
Elegant form management primitives for the react hooks era.@koale/useworker
âï¸ Running heavy task in background using web workers, without blocking the UI@marvelsq/use-properties-hook
Instance functions inside FunctionComponent likeclass-properties
and equal inShallowCompare
@rehooks/component-size
React hook for determining the size of a component.@rehooks/document-title
React hook for updating the document-title.@rehooks/document-visibility
React hook for subscribing to document visibility.@rehooks/input-value
React hook for creating input values.@rehooks/local-storage
React hook which syncslocalStorage[key]
with the comp.@rehooks/network-status
React hook for getting network-status.@rehooks/online-status
React Hook for Online status.@rehooks/window-scroll-position
React hook for getting windowx
andy
position.@rehooks/window-size
React hook for subscribing to window size.@rekindle/use-request
ð¤ React hook for making request.@rkrupinski/use-state-machine
A finite state machine hook.@staltz/use-profunctor-state
React Hook for state management with Profunctor Optics@webscopeio/react-health-check
ð¥ Lightweight React hook for checking health of API services.@wellyshen/use-web-animations
ð¿ React hook for highly-performant and manipulable animations using Web Animations API.@withvoid/melting-pot
React hook utility library.ahooks/usetable
A Progressive Solution for Query Table Scene.concent
State management that tailored for react, it is simple, predictable, progressive and efficient.constate
Transform your local state into global state usinguseContextState
anduseContextReducer
.conuse
Share Hook with Contexteasy-peasy
Easy peasy global state for React.fetch-suspense
React hook for the Fetch API with support for Suspense.graphql-hooks
Minimal hooks-first GraphQL client.mobx-react-lite
Lightweight React bindings for MobX based on experimental React hooks.modali
A delightful modal dialog component for React, built from the ground up to support React Hooks.moment-hooks
A library containing generic react hooksnice-hooks
ð¹ A lot of nice hooks to make react hooks easier to use ( useState callback / life cycle / instance variable)promise-hook
React hook for simplifying Promise based data fetching.reactive-react-redux
React Redux binding with React Hooks and Proxyreact-async-hook
React hook to fetch ad-hoc data into your React components.react-cached-callback
React hooks for caching many callbacks by key, for example, in loops.react-context-refs
React hooks for getting refs of elements via context.react-cookie
React hooks for universal cookies.react-cool-dimensions
ð React hook to measure an element's size and handle responsive components.react-cool-form
ð React hooks for forms state and validation, less code more performant.react-cool-inview
ð¥ï¸ React hook to monitor an element enters or leaves the viewport (or another element).react-cool-onclickoutside
ð± React hook to listen for clicks outside of the component(s).react-cool-portal
ð React hook for Portals, which renders modals, dropdowns, tooltips etc. to or else.react-cool-virtual
â»ï¸ A tiny React hook for rendering large datasets like a breeze.react-countdown-hook
Dead simple yet powerful countdown hook for React. Powered byrequestAnimationFrame
.react-darkreader
ð A React Hook for adding a dark / night mode to your site inspired by darkreader.react-declare-form
React hook based declarative form library.react-deep-hooks
React hooks for non-primitive dependencies.react-dom-status-hook
React hook for subscribing to theDOMContentLoaded
event.react-enhanced-reducer-hook
An alternative touseReducer
that accepts middlewares.react-fetch-hook
React hook for conveniently use Fetch API.react-firebase-hooks
A collection of hooks for use with Firebase.react-form-stateful
Form library. Exposes dispatch to allow for the library to be extended through side effects.react-hanger
A small collection of utility hooks.react-hook-mighty-mouse
React hook that tracks mouse events on selected element ðreact-hook-mousetrap
A hook to trigger callbacks on keys or keys combos, powered by mousetrap.react-hookedup
A collection of useful React hooks.react-hook-form
Form validation without the hassle.react-hook-layout
Layout management in React.react-hooks-async
React custom hooks for async functions with abortability and composabilityreact-hooks-global-state
A simple global state management.react-hooks-image-size
Hook to get natural image size from url.react-hooks-lib
A set of reusable react hooks.react-hooks-svgdrawing
A hooks to svg drawing.react-hooks-use-modal
A hook to open the modal easily.react-hooks-visible
A hook to element visibility. Uses the intersection observer API.react-hooks-worker
React custom hooks for web workersreact-hotkey-hook
React hook for hotkeys.react-i18next
Internationalization for react done right.react-immer-hooks
useState and useReducer using Immer to update state.react-indicative-hooks
Hooks wrapping a data validation library called Indicativereact-intersection-visible-hook
React hook to track the visibility of a functional component.react-media-hook
React hook for Media Queries.react-metatags-hook
React Hook to manage html meta tags.react-native-react-bridge
A React Native plugin to run React and handle communication between them.react-optimistic-ui-hook
âï¸ Minimal "optimistic UI" pattern implementation with a React hookreact-page-name
React Hook for managing the page title.react-peer-data
React wrapper for PeerData library for files, media streaming/sharing using WebRTC.react-pirate
React lifecycle and utilities hooks.react-powerhooks
Hooks api for react-powerplug components.react-promiseful
A React component and hook to render children conditionally based on a promise status.react-query
Hooks for fetching, caching and updating asynchronous data in React.react-recaptcha-hook
React hook for google-recaptcha v3react-recipes
ð©âð³ Collection of essential hook recipes ð¥react-request-hook
Managed, cancelable and safe-oriented api requests.react-responsive
React media query module.react-rocketjump
Manage state and side effects like a breeze.react-screen-wake-lock
React implementation of the Screen Wake Lock API. It provides a way to prevent devices from dimming or locking the screen when an application needs to keep runningreact-script-hook
React hook to dynamically load an external script and know when its loadedreact-selector-hooks
Collection of hook-based memoized selector factories for declarations outside of render.react-speech-kit
Hooks for browser Speech Recognition and Speech Synthesis.react-state-patterns
Utility package for creating reusable implementations of React state provider patterns from hooks.react-swipeable
React swipe event handler hook.react-tracked
Simple and fast global state with React Context. Eliminate unnecessary re-renders without hassle.react-uniformed
ð Declarative React forms using hooks.react-use-api
Async HTTP request data for axios. Designed for diverse UI states, SSR and data pre-caching.react-use-browser
A hook enabling client side hydration of Server-Side-Rendered components when server-produced markup needs to differ from the final client application markup.react-use-calendar
A hook for implementing a calendar with events.react-use-clipboard
A hook that copies text to a user's clipboard.react-use-d3
A React hook to use D3.react-use-data-loader
React hook for loading datareact-use-fetch-factory
React hook that takes care of fetching and selecting data with redux.react-use-fetch-with-redux
React hook that caches API requests that works with redux.react-use-form-state
React hook for managing form and inputs state.react-use-id-hook
React hook for generating SSR-safe unique id strings.react-use-idb
React hook for storing value in the browser usingindexDB
.react-use-infinite-loader
:infinity: :page_with_curl: :hourglass_flowing_sand: Super lightweight infinite loading (scroll) hook for React appsreact-use-input
ð£ A hook whose setter can be directly given to HTML inputsreact-use-lazy-load-image
:sunrise: :zap: Add image lazy loading to your React app with easereact-use-message-bar
A simple React hook for message bars.react-use-modal
React hook for manage modal.react-use-path
The tiniest hook style react router.react-use-scroll-position
React hook for using the scroll position.react-use-trigger
React hook for trigger effect from any place of codereact-use-watch
A React hook about triggers once only when dependencies have changed.react-use-wavelet
React hooks for connecting to the Wavelet smart-contract platformreact-use
Collection of essential hooks.react-useFormless
React hook to handle forms state.react-usemiddleware
React hook for using existing Redux middlewares (like thunk or saga) withuseReducer
.react-useportal
ð usePortal, React hook for Portalsreact-user-media
React wrapper fornavigator.getUserMedia
.react-wait
Complex Loader Management Hook for React Applications.react-window-communication-hook
React hook to communicate among browser contexts (tabs, windows, iframes).react-with-hooks
Ponyfill for the proposed React Hooks API.reaktion
useState like hook for global state management.redhooks
Global state management with React Hooks. It also supports the use of middleware like redux-thunk or redux-saga or your own custom middleware.redux-react-hook
React hook for accessing mapped state from a Redux store.region-core
A global state management framework with a hookuseProps
.rehooks-visibility-sensor
It checks whether an element has scrolled into view or not.resynced
Multiple state management using React Hooks API.reto
Flexible and efficient React store with hooks.rrh
Super Simple React Hooks for react-redux.rxjs-hooks
An easy way to use RxJS v6+ with react hooks.scroll-data-hook
Returns information about scroll speed, distance, direction and more.style-hook
ð¨ wirte css in js with react hooks.swr
React Hooks library for remote data fetching.the-platform
Browser API's turned into React Hooks and Suspense-friendly React elements for common situations.trousers
ð A hooks-first CSS-in-JS library, focused on semantics and runtime performanceuse-abortable-fetch
React hook that does a fetch and aborts when the components is unloaded or a different request is made.use-action
Almost same to useEffect, but not deferred.use-as-bind
React hook for using as-bind with a WASM source.use-async-memo
React hook for generating async memoized data.use-autocomplete
A React hook for returning autocomplete values for a search string within an array.use-axios-react
React CRUD hooks for axios, comprehensive list of examplesuse-boolean
Convenient helpers for handling boolean state.use-browser-history
A React hook to handle browser history events.use-cart
A React hook that gives you shopping cart functionality.use-click-away
React hook when you want a callback invoked when a DOM element was not clicked.use-clippy
A React hook to reading from and writing to the user's clipboard.use-context-selector
React useContextSelector hook in userland.use-controlled-input-number
React hook to turn numeric input behavior into pretty much what you expect.use-countries
Custom react hook to list countries and languages.use-debounce
A debounce (and throttle) hook for React.use-deep-compare
It's react's useEffect/useMemo/useCallback hooks, except using deep comparison on the inputs.use-deep-compare-effect
ð It's react's useEffect hook, except using deep comparison on the inputs, not reference equality.use-detect-print
React hook to detect when a page is being printed.use-dimensions
React Native hook for getting screen and window dimensions.use-double-click
React hook for continuous double-clicks and combining click and double-click eventsuse-eazy-auth
React hooks for handle auth stuff.use-events
A set of React Hooks to handle mouse events.use-force-update
React hook for forcing re-render of a functional Component.use-hotkeys
HotKeys.js React Hook that listen to keydown and keyup keyboard events, defining and dispatching keyboard shortcuts.use-hovering
Simple, accessible React hook for tracking hover state.use-http
ð¶ useFetch, React hook for making isomorphic http requests.use-immer
A hook to use immer to manipulate state.use-input-file
React hook for creating input file.use-is-mounted-ref
useIsMountedRef
is a React Hook to check when the component is mounted.use-lang-direction
A hook that reads the HTML element'sdir
attribute value and any updates to that value allowing you to update your UI accordingly.use-last-fm
A hook to show your current playing song from Spotify or any other site last.fm supports in realtime. âªuse-lilius
A headless calendar hook for React.use-media
CSS media queries with React hook.use-mouse-action
React Hooks to listen to both mouse down or up and click events with a once called function.use-multiselect
Manage multiselect state.use-overflow
A React Hook that allows you to detect X and Y overflowuse-places-autocomplete
ð React hook for Google Maps Places Autocomplete.use-popper
React hook wrapper around Popper.js.use-query-params
A React Hook for managing state in URL query parameters with easy serialization.use-react-modal
ð¼ useModal, React hook for Modals/Dialogs/Lightboxesuse-react-router
React Hook for pub-sub behavior using React Router.use-reactive-state
useReactiveState()
- a reactive alternative to React'suseState()
.use-reducer-async
React useReducer with async actionsuse-redux
A hook to bind redux.use-scroller
React hook that automatically adds the next page, saving users from a full page load.use-scroll-to-bottom
React hook for detecting when an element was scrolled to bottom.use-simple-undo
Simple implementation of undo/redo functionality.server-push-hooks
ð¥ React hooks for socket.io, SEE and more to comeuse-socket.io-client
React hook for socket.io-client, manipulate socket.io client without any side effect.use-sse
â¨useSSE - use Server-Side Effect.useEffect
both on client and server side.use-ssr
â¯ï¸ React hook to determine if you are on the server, browser, or react native.use-state-snapshots
A React hook to keep track of state changes for undo/redo functionality.use-substate
React hook for subscribing to your single app state (works with your current Redux app).use-suspender
Execute asynchronous actions withReact.Suspense
use-t
Multi-language using hooks.use-undo
React hook to implement Undo and Redo functionality.use-videocard
React hook to fetch the graphics card information of the client using canvasuse-window-blur-change-title
React Hook for set the page title when the user is shifting focus away from the current window.useDarkMode
A custom React Hook to help you implement a "dark mode" component.useDeferredState
A React hook for deferring state change. That's essential when your UI needs to wait for disappearing animation is complete to unmount component.useDropZone
React hook that allows you to set simple drag and drop functionality.useEmailAutocomplete
ð¬ React hook for email autocomplete inputs.useFileDialog
Open file dialog without struggling with file input using useFileDialog react hookuseInView
React implementation of the Intersection Observer API to tell you when an element enters or leaves the viewport.useIsTyping
Hook to see if the user is typing within a textarea or inputuseKeyCapture
â¨ï¸ A simple hook to make keyDown listening event easier.usePosition
React hook to get position top left of an element.useReducerWithEffects
React Hook that colocates reducer and side effectsuseReducerWithLocalStorage
React hook that adds local storage support to theuseReducer
hookuseScreenType
Determining screen size type for Bootstrap 4 grid.useScreenType
React hook to dynamically get current screen type (mobile, tablet, desktop) with configurable breakpoint support.useScrollSpy
React hook to automatically update navigation based on scroll position.useServiceWorker
A React hook which can register a service workeruseValueAfter
Very simple React hook to easily provide different props to a component (comes in handy for testing edge cases)useWaitForElements
A simple hook to wait for elements to be rendered with MutationObserver.useWindowOrientation
A hook returning the window's orientation (portrait vs. landscape) based off of current window dimensionsuseWindowWidthBreakpoints
A hook for using (Bootstrap-inspired) window width breakpoints
Top Related Projects
A collection of awesome things regarding React ecosystem
Curated List of React Components & Libraries.
Awesome React Native components, news, tools, and learning material!
📋 React Hooks for form state management and validation (Web + React Native)
React Hooks — 👍
🤖 Powerful asynchronous state management, server-state utilities and data fetching for the web. TS/JS, React Query, Solid Query, Svelte Query and Vue Query.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot