
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
dom-event-tracker
Advanced tools
Dynamically tracks mutations and listens for click and seen events.
DOM Event Tracker uses IntersectionObserver and MutationObserver for tracking click and seen events.
Whenever an element is visible in the users screen it fires seen
event.
Whenever user clicks an item, it fies click
event.
npm install dom-event-tracker
You can also clone repository and build.
git clone git@github.com:Trendyol/dom-event-tracker.git && cd dom-event-tracker
npm install
npm run build
data-tracker-root
attribute to root element. Root element is being tracked for mutations.data-tracker="seen:seenEventName click:clickEventName"
.window.Tracker.init((eventName, eventType, element) => {
//Report your event
GoogleAnalytics.fireEvent(eventName);
});
<html>
<head></head>
<body>
<div class="container" data-tracker-root>
<div>
<div class="info-box" data-tracker="seen:infoBoxSeen"></div>
</div>
<div class="help-button" data-tracker="click:helpButtonClicked"></div>
<div class="info-button" data-tracker="click-capture:infoButtonClicked"></div>
</div>
<script>
window.Tracker.init(); // Without callback it uses console for notifying events
</script>
</body>
</html>
Whenever an element is visible in the users screen it fires seen
event. IntersectionObserver without threshold.
Whenever callback returns
true
, seen event won't be fired for that element. Otherwise it will always fire seen event. This means almost each scroll
Whenever user clicks an item, it fires click
event.
Uses event bubbling for listening click events.
Whenever user clicks an item, it fires click
event.
Uses event capturing for listening click events.
You can provide root callback for async initialize.
<div data-tracker-root="onTrackerLoaded">
<div data-tracker="seen:seenItem"></div>
</div>
<script>
function onTrackerLoaded(e){
GoogleAnalytics.event(e);
}
</script>
<script src="cdn://tracker.min.js" defer></script>
You can also call init manually
<div data-tracker-root="">
<div data-tracker="seen:seenItem"></div>
</div>
<script src="cdn://tracker.min.js"></script>
<script>
window.Tracker.init((e) => GoogleAnalytics.event(e));
</script>
function callbackHandler(eventName, eventType, element){
}
FAQs
Dynamically tracks mutations and listens for click and seen events
We found that dom-event-tracker 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 how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.