
Security News
OpenGrep Restores Fingerprinting in JSON and SARIF Outputs
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
move-priority
Advanced tools
Currently under development, so use it at your own risk
This library attaches event listeners to an element and does some calculations, to support drag and drop and gesture interactions. However, the main purpose is, to detect if such an interaction already happens inside the element and then reject the one with less priority.
I'm aware that it would be common, to achieve this by calling event.stopPropagation()
.
However, I was in the situation, that it had to be done very often.
For example, if you have pages, you can swipe between them and the content can be arbitrary.
So also drag and drop, small games, anything else is possible
and not even done by yourself.
This library covers 90% of the cases
where to call event.stopPropagation()
.
So it decides if an interaction makes sense,
then it does some calculations
and triggers registered callback functions.
If it doesn't work as excpected, you can still cancel the event the "old" way.
npm install move-priority
As first parameter it expects an element or a selector like .my-element.
The second argument is an object with options, explained below
import MovePriority from 'move-priority';
new MovePriority(document.querySelector('#element'), {
onMove() {
// Detected mousemove/pointermove inside the element.
// There is no other interaction inside the element!
},
});
FAQs
**Currently under development, so use it on your own risk**
The npm package move-priority receives a total of 8 weekly downloads. As such, move-priority popularity was classified as not popular.
We found that move-priority 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
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.