Socket
Socket
Sign inDemoInstall

@alizeait/use-debounce

Package Overview
Dependencies
4
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @alizeait/use-debounce

React hook to debounce values


Version published
Weekly downloads
2
Maintainers
1
Install size
10.4 kB
Created
Weekly downloads
 

Readme

Source

use-debounce Check Coverage

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

Keywords

FAQs

Last updated on 02 Mar 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc