{"id":21464375,"url":"https://github.com/childrentime/reactuse","last_synced_at":"2025-05-14T03:10:40.816Z","repository":{"id":65378554,"uuid":"538025867","full_name":"childrentime/reactuse","owner":"childrentime","description":"Collection of essential React Hooks Utilities.","archived":false,"fork":false,"pushed_at":"2025-05-06T08:14:57.000Z","size":3413,"stargazers_count":908,"open_issues_count":6,"forks_count":133,"subscribers_count":99,"default_branch":"main","last_synced_at":"2025-05-11T23:34:10.524Z","etag":null,"topics":["react","reacthooks","reactuse","utility-library"],"latest_commit_sha":null,"homepage":"https://www.reactuse.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/childrentime.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"childrentime","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":"lianwenwu","custom":["https://buy.stripe.com/6oE14X9IJ8kS3q8aEF","https://buy.stripe.com/aEU8xpaMNdFcf8Q5km"]}},"created_at":"2022-09-18T06:48:43.000Z","updated_at":"2025-05-09T15:40:02.000Z","dependencies_parsed_at":"2024-01-09T07:47:27.178Z","dependency_job_id":"106538b8-7700-4cc5-95e9-c7e9a8b35901","html_url":"https://github.com/childrentime/reactuse","commit_stats":{"total_commits":259,"total_committers":7,"mean_commits":37.0,"dds":"0.28957528957528955","last_synced_commit":"b36bf4cd4e4a6312693ca39e94fc7490b3dcac7c"},"previous_names":[],"tags_count":76,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/childrentime%2Freactuse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/childrentime%2Freactuse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/childrentime%2Freactuse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/childrentime%2Freactuse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/childrentime","download_url":"https://codeload.github.com/childrentime/reactuse/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254059512,"owners_count":22007769,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react","reacthooks","reactuse","utility-library"],"created_at":"2024-11-23T07:32:04.786Z","updated_at":"2025-05-14T03:10:35.646Z","avatar_url":"https://github.com/childrentime.png","language":"TypeScript","funding_links":["https://github.com/sponsors/childrentime","https://buymeacoffee.com/lianwenwu","https://buy.stripe.com/6oE14X9IJ8kS3q8aEF","https://buy.stripe.com/aEU8xpaMNdFcf8Q5km","https://www.buymeacoffee.com/lianwenwu"],"categories":["MDX"],"sub_categories":[],"readme":"\u003cdiv align = \"center\"\u003e\n   \u003ch1 align = \"center\"\u003e\n    reactuse\n  \u003c/h1\u003e\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://bundlephobia.com/result?p=@reactuses/core\"\u003e\n    \u003cimg alt=\"Bundlephobia\" src=\"https://img.shields.io/bundlephobia/minzip/@reactuses/core?style=for-the-badge\u0026labelColor=24292e\"\u003e\n  \u003c/a\u003e\n  \u003ca aria-label=\"Types\" href=\"https://www.npmjs.com/package/@reactuses/core\"\u003e\n    \u003cimg alt=\"Types\" src=\"https://img.shields.io/npm/types/react-use-system-color-mode?style=for-the-badge\u0026labelColor=24292e\"\u003e\n  \u003c/a\u003e\n  \u003ca aria-label=\"NPM version\" href=\"https://www.npmjs.com/package/@reactuses/core\"\u003e\n    \u003cimg alt=\"NPM Version\" src=\"https://img.shields.io/npm/v/@reactuses/core?style=for-the-badge\u0026labelColor=24292e\"\u003e\n  \u003c/a\u003e\n  \u003ca aria-label=\"License\" href=\"https://jaredlunde.mit-license.org/\"\u003e\n    \u003cimg alt=\"UnLicense\" src=\"https://img.shields.io/npm/l/@reactuses/core?style=for-the-badge\u0026labelColor=24292e\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cpre align=\"center\"\u003enpm i @reactuses/core\u003c/pre\u003e\n\n\u003cp align=\"center\"\u003e\nCollection of essential React Hooks Utilities.\n\u003c/p\u003e\n\n\u003chr\u003e\n\n## QuickStart\n\n```tsx harmony\nimport { useToggle } from '@reactuses/core'\n\nfunction Demo() {\n  const [on, toggle] = useToggle(true)\n\n  return (\n    \u003cdiv\u003e\n      \u003cdiv\u003e{on ? 'ON' : 'OFF'}\u003c/div\u003e\n      \u003cbutton onClick={toggle}\u003eToggle\u003c/button\u003e\n      \u003cbutton onClick={() =\u003e toggle(true)}\u003eset ON\u003c/button\u003e\n      \u003cbutton onClick={() =\u003e toggle(false)}\u003eset OFF\u003c/button\u003e\n    \u003c/div\u003e\n  )\n}\n```\n\nRefer to [documentations](https://reactuse.com/) for more details.\n\n\u003chr\u003e\n\n## Documentation \u0026 Live Examples\n\n- [Documentation](https://reactuse.com/)\n\n\u003chr/\u003e\n\n## Feedback\n\nYou can submit an [issue](https://github.com/childrentime/reactuse/issues) or provide feedback on [Discord](https://discord.gg/HMsq6cFkKp).\n\n\u003chr/\u003e\n\n## Contribute\n\nSee the [**Contributing Guide**](https://github.com/childrentime/reactuse/blob/main/CONTRIBUTING.md)\n\n## ChangeLog\n\nSee the [**ChangeLog**](https://github.com/childrentime/reactuse/blob/main/packages/core/changelog.md)\n\n\u003chr/\u003e\n\n## Thanks\n\nThis project is heavily inspired by the following awesome projects.\n\n- [streamich/react-use](https://github.com/streamich/react-use)\n- [ahooks](https://github.com/alibaba/hooks)\n- [vueuse](https://github.com/vueuse/vueuse)\n\n\u003chr/\u003e\n\n## Sponsor Me\n\nIf my work has helped you, consider buying me a cup of coffee. Thank you very much🥰!.\n\n[Buy me a coffee](https://www.buymeacoffee.com/lianwenwu)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchildrentime%2Freactuse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchildrentime%2Freactuse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchildrentime%2Freactuse/lists"}