What is @react-hookz/web?
@react-hookz/web is a collection of React hooks designed to simplify common web development tasks. It provides a wide range of hooks for state management, side effects, DOM interactions, and more, making it easier to build complex web applications with React.
What are @react-hookz/web's main functionalities?
State Management
The useToggle hook provides a simple way to manage boolean state. It returns the current state and a function to toggle the state.
import { useToggle } from '@react-hookz/web';
function ToggleComponent() {
const [value, toggle] = useToggle();
return (
<div>
<p>{value ? 'ON' : 'OFF'}</p>
<button onClick={toggle}>Toggle</button>
</div>
);
}
Side Effects
The useDebounce hook delays the update of a value until after a specified delay. This is useful for scenarios like search input where you want to wait for the user to stop typing before performing an action.
import { useDebounce } from '@react-hookz/web';
function SearchComponent() {
const [query, setQuery] = useState('');
const debouncedQuery = useDebounce(query, 500);
useEffect(() => {
if (debouncedQuery) {
// Perform search
}
}, [debouncedQuery]);
return (
<input
type="text"
value={query}
onChange={(e) => setQuery(e.target.value)}
/>
);
}
DOM Interactions
The useEventListener hook allows you to easily add and clean up event listeners. In this example, a click event listener is added to the window object.
import { useEventListener } from '@react-hookz/web';
function ClickLogger() {
useEventListener(window, 'click', () => {
console.log('Window clicked');
});
return <div>Click anywhere to log a message</div>;
}
Other packages similar to @react-hookz/web
react-use
react-use is a collection of essential React hooks. It offers a wide range of hooks for state management, side effects, lifecycle events, and more. Compared to @react-hookz/web, react-use has a larger community and more extensive documentation.
ahooks
ahooks is a React hooks library that provides a set of high-quality and reliable hooks. It focuses on performance and ease of use. ahooks offers similar functionalities to @react-hookz/web but also includes some unique hooks for advanced use cases.
usehooks-ts
usehooks-ts is a collection of React hooks written in TypeScript. It provides type-safe hooks for common tasks in React applications. Compared to @react-hookz/web, usehooks-ts is more focused on TypeScript users and offers type safety out of the box.
@react-hookz/web
is a library of general-purpose React hooks built with care and SSR compatibility
in mind.
Install
This one is pretty simple, everyone knows what to do:
npm i @react-hookz/web
# or
yarn add @react-hookz/web
As hooks was introduced to the world in React 16.8, @react-hookz/web
requires - you guessed it -
react
and react-dom
16.8+.
Also, as React does not support IE, @react-hookz/web
does not do so either. You'll have to
transpile your node-modules
in order to run in IE.
Usage
This package provides three levels of compilation:
- Main, the
/cjs
folder — CommonJS modules, with ES5 lang level. - ESM, the
/esm
folder — it is ES modules (browser compatible), with ES5 lang level. - ESNext, the
/esnext
folder — it is ES modules (browser compatible), with ESNext lang level.
So, if you need the useMountEffect
hook, depending on your needs, you can import in three ways
(there are actually more, but these are the three most common):
import { useMountEffect } from "@react-hookz/web";
import { useMountEffect } from "@react-hookz/web/esm";
import { useMountEffect } from "@react-hookz/web/esnext";
Hooks list
-
Callback
useDebounceCallback
— Makes passed function debounced, otherwise acts like useCallback
.useRafCallback
— Makes passed function to be called within next animation frame.
-
Lifecycle
-
State
useMediatedState
— Like useState
, but every value set is passed through a mediator function.usePrevious
— Returns the value passed to the hook on previous render.useSafeState
— Like useState
, but its state setter is guarded against sets on unmounted component.useToggle
— Like useState
, but can only become true
or false
.
-
Navigator
-
Miscellaneous
useSyncedRef
— Like useRef
, but it returns immutable ref that contains actual value.
-
Side-effects