
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
cursor-traces
Advanced tools
Leaves permanent cursor traces on links clicked, persisting across page reloads.
Leaves a visual trace (custom cursor icon) at the location where you click a link. The traces persist across page reloads within the session.

Add the script and initialize it in your HTML.
<script src="https://unpkg.com/cursor-traces@1.1.0/min.js"></script>
<script>
// Simple usage
if(window.CursorTraces) {
CursorTraces.startCursorTraces();
}
// Or with options
/*
if(window.CursorTraces) {
CursorTraces.startCursorTraces({
selector: 'a, button', // Track links and buttons
zIndex: '9999', // Custom z-index
useCapture: true // Force event capture
});
}
*/
</script>
npm install cursor-traces
const { startCursorTraces, destroy, clearHistory } = require('cursor-traces');
// Initialize with default settings (tracks <a> tags)
startCursorTraces();
// Or initialize with custom options
startCursorTraces({
selector: 'a, .trace-me', // CSS selector for elements to trace
zIndex: '999999', // Z-Index of the cursor icon
useCapture: true // Use capture phase (recommended)
});
startCursorTraces(options?)Initialize cursor tracing.
| Option | Type | Default | Description |
|---|---|---|---|
selector | string | 'a' | CSS selector for elements to track |
zIndex | string | number | '2147483647' | Z-index of cursor traces |
useCapture | boolean | true | Use capture phase for click events |
destroy()Clean up all resources. Removes event listeners, disconnects ResizeObserver, and removes all cursor traces from the DOM.
// CommonJS
const { destroy } = require('cursor-traces');
destroy();
// Browser
CursorTraces.destroy();
clearHistory()Clear the session storage history. This removes all saved cursor positions.
// CommonJS
const { clearHistory } = require('cursor-traces');
clearHistory();
// Browser
CursorTraces.clearHistory();
MIT
FAQs
Leaves permanent cursor traces on links clicked, persisting across page reloads.
We found that cursor-traces demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.