
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
visionist-react-input-debouncer
Advanced tools
Higher order component for debouncing input change events
A higher-order component for debouncing inputs in react. Works with any component that takes
value
and onChange
props.
npm install --save react-input-debouncer
Wrap the component you want to debounce with the debounceInput
function. A delay of 250ms will be applied by default
if one isn't provided.
import React, { Component } from 'react';
import debounceInput from 'react-input-debouncer';
class Input extends Component {
render() {
return (
<input type="text" {...this.props} />
)
}
}
export default debounceInput({ delay: 250 })(Input);
Then simply use the composed component like you would the original.
import Input from './Input.js';
class App extends Component {
constructor(props) {
super(props);
this.state = {
value: ''
};
}
handleChange(e) {
console.log('debounced input changed!', e.target.value);
this.setState({
value: e.target.value
});
}
render() {
const { value } = this.state;
return (
<div>
<Input
type="text"
value={value}
onChange={this.handleChange.bind(this)}
/>
</div>
);
}
}
FAQs
Higher order component for debouncing input change events
We found that visionist-react-input-debouncer 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.