Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
event-from
Advanced tools
Determine if a browser event was caused by mouse
, touch
, or key
input. Can be used to:
mouse
events caused by touch
input.focus
was initiated from the keyboard (to know when to add focus styles).click
event was from mouse
, touch
, or key
input.mouseOnly
, touchOnly
, or hybrid
, and if the primary input is mouse
or touch
.Demo website (code in the demo repo)
npm install --save event-from
import { eventFrom } from 'event-from';
const handleEvent = (event) => {
// in the event handler call eventFrom and pass in the event
// eventFrom will return 1 of 3 strings: 'mouse' | 'touch' | 'key'
eventFrom(event);
};
mouse
events caused by touch
inputNote that a touch interaction will fire Touch Events as the interaction is in progress (touch on the screen), and will fire Mouse Events during a long press (extended touch on the screen), or after the touch interaction has finished (after the touch is removed from the screen) to support sites that only listen for Mouse Events.
import { eventFrom } from 'event-from';
const handleMouseEvent = (e) => {
// early return to ignore mouse events not from mouse input
if (eventFrom(e) !== 'mouse') return;
// code for handling mouse events from mouse input
};
element.addEventListener('mouseenter', handleMouseEvent, false);
focus
event was from key
input for accessibilityimport { eventFrom } from 'event-from';
const handleFocusEvent = (e) => {
if (eventFrom(e) === 'key') {
// set focus styles when focus is from keyboard input
}
};
element.addEventListener('focus', handleFocusEvent, false);
click
event was from mouse
, touch
, or key
inputimport { eventFrom } from 'event-from';
const handleClickEvent = (e) => {
switch (eventFrom(e)) {
case 'mouse':
// click event from mouse
break;
case 'touch':
// click event from touch
break;
case 'key':
// click event from key
break;
}
};
element.addEventListener('click', handleClickEvent, false);
Event From sets passive capture phase event listeners on the document
and window
and tracks the recent event history to know what input type is responsible for the event that's passed to eventFrom(event)
.
The listeners that Event From sets are all low frequency event listeners (enter/leave/down/up/focus/etc). Event From does not set any high frequency listeners such as move
or scroll
listeners.
FAQs
Determine if an event was caused by mouse, touch or key input.
The npm package event-from receives a total of 407 weekly downloads. As such, event-from popularity was classified as not popular.
We found that event-from 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.