react
Cheatsheets for experienced React developers getting started with TypeScript (by typescript-cheatsheets)
react-use
React Hooks — 👍 (by streamich)
react | react-use | |
---|---|---|
81 | 60 | |
46,582 | 43,485 | |
0.2% | 0.4% | |
4.9 | 6.8 | |
10 days ago | 6 days ago | |
JavaScript | TypeScript | |
MIT License | The Unlicense |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
react
Posts with mentions or reviews of react.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-11-09.
-
React query, hook personalizado.
Guía de TypeScript para React: Using TypeScript with React
- Onde contribuir no #Hacktoberfest 2024
- Cheatsheets for React Devs Transitioning to TypeScript
-
How to use Typescript in React apps
Congratulations, you now know how to use TypeScript in your React App. For further reading check out this React TypeScript cheat sheet
- React Basics: Essential Knowledge for Every React Developer
-
Ultimate Guide & Resources to Enhancing Your ReactJS Skills || 16 GitHub repositories
Quickly reference the essentials with these handy React cheatsheets.
- Anyone got good resources for experienced devs that don't know front end?
-
Any good books for React, Typescript, Tailwind combo?
For React and Typescript, this is the bible: https://react-typescript-cheatsheet.netlify.app/
- Can anyone recommend a decent tutorial/docs for React TSX
- Typescript: 5 Resources To Become A Pro
react-use
Posts with mentions or reviews of react-use.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-07-29.
-
A usePrevious Hook Disaster Story
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 }
-
Breakdown useEffect in React: Why do many people hate useEffect
With FE mindset, it’s very intuitive to come up with a solution listening on the changes of state by using useEffect, much like the approach taken by libraries such as react-use.
-
Ultimate Guide & Resources to Enhancing Your ReactJS Skills || 16 GitHub repositories
Discover a collection of custom React hooks for supercharging your app's functionality.
- small and efficient useBreakpoints hook
-
UseHooks – A Collection of Server Component Safe React Hooks
How do these compare with the current heavyweight library?
https://github.com/streamich/react-use
-
This package simplifies async data handling in your React apps
What's the benefit over useAsync and friends?
-
Manipulating nested objects inside state
try this one: https://github.com/streamich/react-use/blob/master/docs/useSetState.md
-
5 Great Custom Hooks For Your React Project
One use case for the useWindowSize hook, which belongs to react-use, is for responsive design. The useWindowSize hook keeps track of the size of the browser window which makes it possible to apply different styles (layouts, displays, etc.) to user interfaces at different sizes. It returns an object containing the current width and height of the window.
-
7 Really Helpful GitHub Repositories for React Developers🚀🎯
Link: https://github.com/streamich/react-use
-
16 Github Repos to master React
10-) Sometimes when hooks are not enough for you, you may feel the need to write Custom Hooks. A great Custom Hook List that will make your job easier react-use beautiful-react-hooks
What are some alternatives?
When comparing react and react-use you can also consider the following projects:
react-bits - ✨ React patterns, techniques, tips and tricks ✨
usehooks-ts - React hook library, ready to use, written in Typescript.
tailwindcss-typography - Beautiful typographic defaults for HTML you don't control.
milkdown - 🍼 Plugin driven WYSIWYG markdown editor framework.
usehooks - Easy to understand React Hook code recipes
rooks - Collection of awesome react hooks