Gathering detailed insights and metrics for @react-hookz/web
Gathering detailed insights and metrics for @react-hookz/web
Gathering detailed insights and metrics for @react-hookz/web
Gathering detailed insights and metrics for @react-hookz/web
npm install @react-hookz/web
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
1,931 Stars
1,565 Commits
94 Forks
7 Watching
22 Branches
23 Contributors
Updated on 28 Nov 2024
TypeScript (80.47%)
MDX (18.54%)
JavaScript (0.95%)
Shell (0.04%)
Cumulative downloads
Total Downloads
Last day
-10.3%
29,954
Compared to previous day
Last week
-1.5%
173,264
Compared to previous week
Last month
3.1%
737,339
Compared to previous month
Last year
35.8%
8,602,467
Compared to previous year
1
37
@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:
1npm i @react-hookz/web 2# or 3yarn 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
don't either.
This package distributed with ESNext language level and ES modules system. It means that depending on your browser target you might need to transpile it. Every major bundler provides a way to transpile
node_modules
fully or partially. Address your bundler documentation for more details.
You can import hooks two ways:
1// from the root of package 2import { useMountEffect } from '@react-hookz/web'; 3// or single hook directly 4import { useMountEffect } from '@react-hookz/web/useMountEffect/index.js';
In case your bundler supports tree-shaking (most of modern does) - both variants are equal and only necessary code will get into your bundle. Direct hook imports should be considered otherwise.
@react-hookz/web
was built as a spiritual successor
of react-use
by one of its former maintainers.
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 given conditions match a given predicate.useCustomCompareEffect
— Like useEffect
but uses a 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
— Returns a boolean that is true
only on first render.useIntervalEffect
— Like setInterval
but in the form of a React hook.useIsMounted
— Returns a function that yields current mount state.useIsomorphicLayoutEffect
— Like useLayoutEffect
but falls back to useEffect
during SSR.useMountEffect
— Run an effect only when a component mounts.useRafEffect
— Like useEffect
, but the effect is only run within an animation frame.useRerender
— Returns a callback that re-renders the component.useThrottledEffect
— Like useEffect
, but the passed function is throttled.useTimeoutEffect
— Like setTimeout
, but in the form of a React hook.useUnmountEffect
— Run an effect only when a component unmounts.useUpdateEffect
— An effect hook that ignores the first render (not invoked on mount).useLifecycleLogger
— This hook provides logging when the component mounts, updates and unmounts.useControlledRerenderState
— Like useState
, but its state setter accepts an extra argument, that allows cancelling
renders.useCounter
— Tracks a numeric value and offers functions for manipulating it.useDebouncedState
— Like useState
but its state setter is debounced.useFunctionalState
— Like useState
but instead of raw state, a state getter function is 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 renders.useQueue
—
A state hook implementing FIFO queue.useRafState
—
Like React.useState
, but state is only updated within animation frame.useRenderCount
—
Tracks component's render count including first render.useSet
— Tracks the
state of a Set
.useToggle
— Like
useState
, but can only be true
or false
.useThrottledState
— Like useState
but its state setter is throttled.useValidator
— Performs validation when any of the provided dependencies change.useNetworkState
— Tracks the state of the browser's network connection.useVibrate
— Provides vibration feedback using the Vibration API.usePermission
— Tracks the state of a permission.useSyncedRef
— Like useRef
, but it returns an immutable ref that contains the actual value.useCustomCompareMemo
— Like useMemo
but uses provided comparator function to validate dependency changes.useDeepCompareMemo
— Like useMemo
but uses @react-hookz/deep-equal
comparator function to validate deep
dependency changes.useHookableRef
— Like useRef
but it is possible to define handlers for getting and setting the value.useAsync
—
Executes provided async function and tracks its results and errors.useAsyncAbortable
— Like useAsync
, but also provides AbortSignal
as first function argument to the 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 the
viewport.useMeasure
—
Uses ResizeObserver
to track an element's dimensions and to re-render the component when they change.useMediaQuery
— Tracks the state of a CSS media query.useResizeObserver
— Invokes a callback whenever ResizeObserver
detects a change to the target's size.useScreenOrientation
— Checks if the screen is in portrait
or landscape
orientation and automatically re-renders on
orientation change.useDocumentVisibility
— Tracks document visibility state.useClickOutside
— Triggers a callback when the user clicks outside a target element.useEventListener
— Subscribes an event listener to a target element.useKeyboardEvent
— Invokes a callback when a keyboard event occurs on the chosen target.useWindowSize
— Tracks the inner dimensions of the browser window.No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
3 existing vulnerabilities detected
Details
Reason
8 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6
Reason
badge detected: InProgress
Reason
Found 0/12 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More