Skip to content
/ rooks Public
forked from imbhargav5/rooks

Collection of React hooks ⚓ for everyone.

License

Notifications You must be signed in to change notification settings

bradd123/rooks

 
 

Repository files navigation





Build Status All Contributors


Collection of regularly used custom hooks as utils for React

Image from Gyazo

https://react-hooks.org

Features

✅ Collection of 22+ hooks as separate modules

✅ Standalone package with all the hooks at one place

✅ CommonJS, UMD and ESM Support

Installation

For a specific hook like useDidMount

npm i -s @rooks/use-did-mount
npm i -s @rooks/use-interval
import useDidMount from "@rooks/use-did-mount";

For standalone build with all the hooks

npm i -s rooks

Import any hook from "rooks" and start using them!

import { useDidMount } from "rooks";

Usage

function App() {
  useDidMount(() => {
    alert("mounted");
  });
  return (
    <div className="App">
      <h1>Hello CodeSandbox</h1>
      <h2>Start editing to see some magic happen!</h2>
    </div>
  );
}

Documentation

View the docs here

Standalone Package

Package containing all the hooks is over here. - Docs and Npm Install


License - MIT

Contributors

Thanks goes to these wonderful people (emoji key):

Bhargav Ponnapalli
Bhargav Ponnapalli

💻 🤔 🎨 📖 🐛
Tsvetan
Tsvetan

💻
Wei Zhu
Wei Zhu

💻
Akshay Kadam (A2K)
Akshay Kadam (A2K)

💻
Austin Peterson
Austin Peterson

💻
Frank Hellwig
Frank Hellwig

💻
Neilor Caldeira
Neilor Caldeira

💻
Cong Zhang
Cong Zhang

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

About

Collection of React hooks ⚓ for everyone.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 66.7%
  • TypeScript 31.7%
  • HCL 1.5%
  • HTML 0.1%