
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
react-hammerjs
Advanced tools
ReactJS / HammerJS integration. Support touch events in your React app.
If you're looking for native tap event handling in ReactJS, check out my react-tappable package.
The easiest way to use React-HammerJS is to install it from NPM and include it in your own React build process (using Browserify, etc).
You can also use the standalone build by including dist/hammer.js
in your page. If you use this, make sure you have already included React, and it is available as a global variable.
npm install react-hammerjs --save
React-HammerJS generates a React component (default <span>
) which then has Hammer events bound to it so it can fire the handlers specified.
The component
prop can be used to change the component rendered, which will have the touch events bound to it. It may be a string (any valid DOM tag) or a React component that implements the getDOMNode()
method.
The following events are supported:
onTap
onDoubleTap
onPan
onSwipe
onPress
onPinch
onRotate
You can also provide an action
property which is like the onTap
event handler but will also be fired onPress
.
If you provide the prop vertical={true}
the pan
and swipe
events will support vertical gestures.
The options
property can be used to configure the Hammer manager. These properties will be merged with the default ones.
var Hammer = require('react-hammerjs');
var options = {touchAction:true, recognizers:{tap:{time:600, threshold:100}}};
<Hammer onTap={handleTap} options={options}>Tap Me</Hammer>
FAQs
ReactJS / HammerJS integration. Support touch events in your React app.
The npm package react-hammerjs receives a total of 16,937 weekly downloads. As such, react-hammerjs popularity was classified as popular.
We found that react-hammerjs 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.