Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/childrentime/reactuse
Collection of essential React Hooks Utilities.
https://github.com/childrentime/reactuse
react reacthooks reactuse utility-library
Last synced: 6 days 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 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T08:20:27.000Z (2 months ago)
- Last Synced: 2025-02-14T01:09:27.585Z (8 days ago)
- Topics: react, reacthooks, reactuse, utility-library
- Language: TypeScript
- Homepage: https://www.reactuse.com
- Size: 3.25 MB
- Stars: 893
- Watchers: 99
- Forks: 133
- Open Issues: 3
-
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)