Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@react-hookz/web
Advanced tools
@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.
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>;
}
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 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 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.
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.
This package provides three levels of compilation:
/cjs
folder — CommonJS modules, with ES5 lang level./esm
folder — it is ES modules (browser compatible), with ES5 lang level./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):
// in case you need cjs modules
import { useMountEffect } from '@react-hookz/web';
// in case you need esm modules
import { useMountEffect } from '@react-hookz/web/esm';
// in case you want all the recent ES features
import { useMountEffect } from '@react-hookz/web/esnext';
Coming from react-use
? Check out our
migration guide.
useDebouncedCallback
— Makes passed function debounced, otherwise acts like useCallback
.useRafCallback
— Makes passed function to be called within next animation frame.useThrottledCallback
— Makes passed function throttled, otherwise acts like useCallback
.useConditionalEffect
— Like useEffect
but callback invoked only if conditions match predicate.useCustomCompareEffect
— Like useEffect
but uses provided comparator function to validate dependency changes.useDebouncedEffect
— Like useEffect
, but passed function is debounced.useDeepCompareEffect
— Like useEffect
but uses @react-hookz/deep-equal
comparator function to validate deep
dependency changes.useFirstMountState
— Return boolean that is true
only on first render.useIntervalEffect
— Like setInterval
but in form of react hook.useIsMounted
— Returns function that yields current mount state.useIsomorphicLayoutEffect
— useLayoutEffect
for browser with fallback to useEffect
for SSR.useMountEffect
— Run effect only when component first-mounted.useRafEffect
— Like React.useEffect
, but effect is only run within animation frame.useRerender
— Return callback that re-renders component.useThrottledEffect
— Like useEffect
, but passed function is throttled.useUnmountEffect
— Run effect only when component unmounted.useUpdateEffect
— Effect hook that ignores the first render (not invoked on mount).useLifecycleLogger
— This hook provides a console log when the component mounts, updates and unmounts.useControlledRerenderState
— Like React.useState
, but its state setter accepts extra argument, that allows to cancel
rerender.useCounter
— Tracks a numeric value and offers functions for manipulating it.useDebouncedState
— Like useSafeState
but its state setter is debounced.useFunctionalState
— Like useState
but instead of raw state, state getter returned.useList
— Tracks a list and offers functions for manipulating it.useMap
— Tracks the
state of a Map
.useMediatedState
— Like useState
, but every value set is passed through a mediator function.usePrevious
—
Returns the value passed to the hook on previous render.usePreviousDistinct
—
Returns the most recent distinct value passed to the hook on previous render.useRafState
—
Like React.useState
, but state is only updated within animation frame.useSafeState
—
Like useState
, but its state setter is guarded against sets on unmounted component.useSet
— Tracks the
state of a Set
.useToggle
— Like
useState
, but can only become true
or false
.useThrottledState
— Like useSafeState
but its state setter is throttled.useValidator
— Performs validation when any of provided dependencies has changed.useNetworkState
— Tracks the state of browser's network connection.useVibrate
— Provides vibration feedback using the Vibration API.usePermission
— Tracks a permission state.useSyncedRef
— Like useRef
, but it returns immutable ref that contains actual value.useHookableRef
— Like useRef
but it is possible to define get and set handlers.useAsync
—
Executes provided async function and tracks its result and error.useAsyncAbortable
— Like useAsync
, but also provides AbortSignal
as first function argument to async function.useCookieValue
— Manages a single cookie.useLocalStorageValue
— Manages a single LocalStorage key.useSessionStorageValue
— Manages a single SessionStorage key.useIntersectionObserver
— Observe changes in the intersection of a target element with an ancestor element or with a
top-level document's viewport.useMeasure
—
Uses ResizeObserver to track element dimensions and re-render component when they change.useMediaQuery
— Tracks the state of CSS media query.useResizeObserver
— Invokes a callback whenever ResizeObserver detects a change to target's size.useScreenOrientation
— Checks if screen is in portrait
or landscape
orientation and automatically re-renders on
orientation change.useClickOutside
— Triggers callback when user clicks outside the target element.useDocumentTitle
— Sets title of the page.useEventListener
— Subscribes an event listener to the target, and automatically unsubscribes it on unmount.useKeyboardEvent
— Executes callback when keyboard event occurred on target.useWindowSize
— Tracks window inner dimensions.15.0.0 (2022-07-04)
useControlledRerenderState
hook (#865) (ea4545b)useToggle
now ignores react events passed to its
state setter, so it can be used as event handler directly.useMediaQuery
and useScreenOrientation
are
asynchronous now and yields undefined
at very first render, but
updates to actual value right after.FAQs
React hooks done right, for browser and SSR.
The npm package @react-hookz/web receives a total of 142,737 weekly downloads. As such, @react-hookz/web popularity was classified as popular.
We found that @react-hookz/web demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.