Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
flyd-dom-events
Advanced tools
Get DOM events as a Flyd stream
import flyd as 'flyd'
import flydDomEvents as 'flyd-dom-events'
// Add event listeners for mousedown & mouseup on document.body,
// and return a stream of events
const stream = flydDomEvents(
['mousedown', 'mouseup'],
document.body,
{ capture: true }
)
// Log a message every time a mousedown or mouseup event is triggered
flyd.map(
event => console.log(event.type + ' was triggered'),
stream
)
// Remove event listeners & close stream
const destroy = () => stream.end(true)
destroy()
/**
* Create a stream of DOM events via addEventListener/removeEventListener
* https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
*
* @name flydDomEvents
* @param {Array<string>} types - event types
* @param {HTMLElement} target - DOM node to attach listeners to
* @param {Object} [options] - options for addEventListener/removeEventListener
* @return {stream} the DOM event stream
*
*/
FAQs
DOM events as Flyd streams
The npm package flyd-dom-events receives a total of 0 weekly downloads. As such, flyd-dom-events popularity was classified as not popular.
We found that flyd-dom-events 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.