@keverdjs/agent
v1.7.1
Published
Vanilla JavaScript SDK for Keverd fraud detection and device fingerprinting
Downloads
538
Maintainers
Readme
@keverdjs/agent
Vanilla JavaScript SDK for Keverd fraud detection and device fingerprinting.
Features
- Strict Device Fingerprinting: Captures WebGL, Winding, audio processing logic, and font arrays.
- Incognito Resilience: Automatically detects strict privacy boundaries and emits a mathematically precise fallback schema.
- Zero Behavioral Tracking: Purely deterministic (no keystroke or mouse movement logging).
Installation
npm install @keverdjs/agentQuick Start
Initialize the SDK and retrieve the stable device payload deterministically.
import { Keverd } from '@keverdjs/agent';
// 1. Initialize once
Keverd.init('YOUR_PUBLIC_API_KEY');
// 2. Retrieve the deterministic ID payload securely on demand
const result = await Keverd.get();
console.log('Result:', result);Advanced Configuration
Keverd.init({
apiKey: 'YOUR_PUBLIC_API_KEY',
endpoint: 'https://api.your-custom-instance.com', // Optional custom endpoint
debug: true // View extraction time logs
});