Helios Fingerprint

Minimal demo — ES module import, zero dependencies

loading…
loading…
ℹ️
The demo above runs without an API key. In production, pass your publicApiKey to load() to enable usage tracking and higher rate limits.
Source code
import { load } from
  './node_modules/@mstechmalaysia/helios-fingerprint-sdk/dist/index.esm.js';

const fp     = await load({ publicApiKey: 'YOUR_PUBLIC_API_KEY' });
const result = await fp.get();

document.getElementById('device-core-id').textContent = result.deviceCoreId;
document.getElementById('visitor-id').textContent     = result.visitorId;