https://github.com/childrentime/reactuse
Collection of essential React Hooks Utilities.
https://github.com/childrentime/reactuse
react reacthooks reactuse utility-library
Last synced: 11 months ago
JSON representation
Collection of essential React Hooks Utilities.
- Host: GitHub
- URL: https://github.com/childrentime/reactuse
- Owner: childrentime
- License: unlicense
- Created: 2022-09-18T06:48:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-05-06T08:14:57.000Z (11 months ago)
- Last Synced: 2025-05-11T23:34:10.524Z (11 months ago)
- Topics: react, reacthooks, reactuse, utility-library
- Language: TypeScript
- Homepage: https://www.reactuse.com
- Size: 3.25 MB
- Stars: 908
- Watchers: 99
- Forks: 133
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
reactuse
npm i @reactuses/core
Collection of essential React Hooks Utilities.
## QuickStart
```tsx harmony
import { useToggle } from '@reactuses/core'
function Demo() {
const [on, toggle] = useToggle(true)
return (
{on ? 'ON' : 'OFF'}
Toggle
toggle(true)}>set ON
toggle(false)}>set OFF
)
}
```
Refer to [documentations](https://reactuse.com/) for more details.
## Documentation & Live Examples
- [Documentation](https://reactuse.com/)
## Feedback
You can submit an [issue](https://github.com/childrentime/reactuse/issues) or provide feedback on [Discord](https://discord.gg/HMsq6cFkKp).
## Contribute
See the [**Contributing Guide**](https://github.com/childrentime/reactuse/blob/main/CONTRIBUTING.md)
## ChangeLog
See the [**ChangeLog**](https://github.com/childrentime/reactuse/blob/main/packages/core/changelog.md)
## Thanks
This project is heavily inspired by the following awesome projects.
- [streamich/react-use](https://github.com/streamich/react-use)
- [ahooks](https://github.com/alibaba/hooks)
- [vueuse](https://github.com/vueuse/vueuse)
## Sponsor Me
If my work has helped you, consider buying me a cup of coffee. Thank you very much🥰!.
[Buy me a coffee](https://www.buymeacoffee.com/lianwenwu)