Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@alizeait/use-debounce

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alizeait/use-debounce

React hook to debounce values

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 02 Mar 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc