
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@alizeait/use-debounce
Advanced tools
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).
$ yarn add @alizeait/use-debounce
or
$ npm install @alizeait/use-debounce
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>
);
}
Returns: value
FAQs
React hook to debounce values
We found that @alizeait/use-debounce demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.