
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
npm install node-touch
Extra touch events and hover behaviour for touch devices.
require('node-touch')();
<div class="touch">Example</div>
In order to use the features, you have to call the module once in the beginning and create the dom elements with the touch class.
div { ... }
div.hover { ... }
On touch devices, the hover behaviour is quite crappy. With this module, if you use the .hover class instead of the :hover pseudoclass, on a touch device the class will be applied when the element is touched on the screen, and on a non-touch device it will act as :hover. example.
var button = document.createElement('button').
button.classList.add('touch');
document.body.appendChild(button);
button.addEventListener('tap', function (event) {
console.log('Tapped!');
}, false);
You can use the tap event just as a normal event. It is sort of the touch equivalent of click.
var div = document.querySelector('div');
div.addEventListener('touchleave', function (event) {
console.log('Left!');
}, false);
The event fires when the finger left the element.
You can add listeners to swipe events. There are three type of swipe events.
div.addEventListener('swipestart', function (event) {});
div.addEventListener('swipemove', function (event) {});
div.addEventListener('swipeend', function (event) {});
The event object's important properties are:
RIGHT, LEFT, UP, DOWNThis module sets a global Boolean that just tells you whether the user is on a touch device. It can be useful!
FAQs
Extra touch events and hover behaviour for touch devices.
We found that node-touch 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.