Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
rdndmb-html5-to-touch
Advanced tools
Multi Backend pipeline for react-dnd-multi-backend (HTML5 <-> Touch)
This project is a Drag'n'Drop backend pipeline compatible with React DnD Multi Backend. It cannot be used standalone.
This pipeline starts by using the React DnD HTML5 Backend, but switches to the React DnD Touch Backend if a touch event is triggered. You application can smoothly use the nice HTML5 compatible backend and fallback on the Touch one on mobile devices!
See the migration section for instructions when switching from 6.x.x
.
npm install -S rdndmb-html5-to-touch
You can then import the pipeline using import { HTML5toTouch } from 'rdndmb-html5-to-touch'
.
This package should be used with react-dnd-multi-backend
.
import { DndProvider } from 'react-dnd-multi-backend'
import { HTML5toTouch } from 'rdndmb-html5-to-touch'
const App = () => {
return (
<DndProvider options={HTML5toTouch}>
<Example />
</DndProvider>
)
}
You can see an example here.
HTML5toTouch
used to be provided as part of react-dnd-multi-backend
which made importing different builds (commonjs vs esm) more difficult. It also used to be a default export.
Previously:
import HTML5toTouch from 'react-dnd-multi-backend/dist/esm/HTML5toTouch'
// or
import HTML5toTouch from 'react-dnd-multi-backend/dist/cjs/HTML5toTouch'
Now:
import { HTML5toTouch } from 'rdndmb-html5-to-touch'
MIT, Copyright (c) 2021-2022 Louis Brunner
FAQs
Multi Backend pipeline for react-dnd-multi-backend (HTML5 <-> Touch)
The npm package rdndmb-html5-to-touch receives a total of 32,861 weekly downloads. As such, rdndmb-html5-to-touch popularity was classified as popular.
We found that rdndmb-html5-to-touch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.