Licence
MIT
Version
1.0.0
Deps
0
Size
10 kB
Vulns
0
Weekly
0
use-debounce

A tiny (~230B) debounce hook.
Creates a debounced value that gets updated after delay milliseconds have
elapsed since the last time useDebounce was invoked.
If delay is omitted in an environment with requestAnimationFrame, value will be debounced until the
next frame is drawn (typically about 16ms).
Installation
$ yarn add @alizeait/use-debounce
or
$ npm install @alizeait/use-debounce
Usage
import React, { useState } from "react";
import { useDebounce } from "@alizeait/use-debounce";
export default function Input() {
const [value, setValue] = useState("Initial");
const debouncedValue = useDebounce(value, 1000);
return (
<div>
<input
defaultValue="Initial"
onChange={(e) => {
setValue(e.target.value);
}}
/>
<p>Actual value: {value}</p>
<p>Debounced value: {debouncedValue}</p>
</div>
);
}
API
useDebounce(value:T, delay?:number)
Returns: value