
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Useful way to handle drag gestures. Covers whole drag and drop lifecycle.
Handle drag events without overhead by only 1 callback. React hook for manage drag and drop lifecycle without extra business or view logic. Useful as base for custom UI components with draggable elements.
Package includes its TypeScript Definitions
npm install use-drags
import React, { useRef, useState } = 'react';
import useDrags from 'use-drags';
function DraggableBlock() {
const ref = useRef(null);
const [position, setPosition] = useState(null);
useDrags(ref, ({
el,
first,
last,
deltaX,
deltaY,
offsetX,
offsetY,
clientX,
clientY,
}) => {
if (first) {
el.style.opacity = 0.5;
}
if (last) {
el.style.opacity = null;
el.style.transform = null;
setPosition(null);
return;
}
setPosition({ clientX, clientY });
el.style.transform = `translate3d(${offsetX}px, ${offsetY}px, 0)`;
});
return (
<div ref={ref}>
<span>Drag me!</span>
{position !== null &&
<span>X: {position.clientX }, Y: {position.clientY}</span>
}
</div>
);
}
npm run lint # linting
npm run test # testing
Active maintenance with care and ❤️.
Feel free to send a PR.
FAQs
Useful way to handle drag gestures. Covers whole drag and drop lifecycle.
The npm package use-drags receives a total of 0 weekly downloads. As such, use-drags popularity was classified as not popular.
We found that use-drags 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.