Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-fastclick-alt
Advanced tools
Wrapper div that implements the FastClick logic in its touch events, triggering appropriate click and focus events on its children if it detects a 'tap'.
npm install --save react-fastclick-alt
Wrap your component in an instance of this component, and it should respond to short taps with immediate click events.
var React = require('react');
var FastClick = require('react-fastclick-alt');
var ReactDOM = require('react-dom');
ReactDOM.render(FastClick({}, MyApp()), document.getElementById('app'));
Note this is safe to do even if child components include react-fastclick-alt because a touchend event that triggers a click will not be propagated.
There are two optional props to this component.
How far a touch can move before it can no longer be converted to a click, in px. Defaults to 15px.
How long a tap can be held before it can no longer be converted to a click, in milliseconds. Defaults to 125ms.
FAQs
A react component that triggers click and focus events for taps of children components
The npm package react-fastclick-alt receives a total of 173 weekly downloads. As such, react-fastclick-alt popularity was classified as not popular.
We found that react-fastclick-alt 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.