@hyunrim03/core
v0.1.2
Published
Dead-click detection core package for browser applications.
Downloads
20
Readme
@hyunrim03/core
A Bun-friendly TypeScript package for detecting dead clicks in browser applications.
Features
- Capture click candidates from actionable controls
- Treat DOM mutations and navigation as handled-click signals
- Support
markHandled()for custom feedback flows - Emit structured dead-click reports for analytics or debugging
Quick example
import { createDeadClickDetector } from "@hyunrim03/core";
const detector = createDeadClickDetector({
onDeadClick(report) {
console.log(report);
},
});
detector.start();For repository-level maintenance and release docs, see the root README files and the docs/ directory in the source repository.
