Minimal demo — ES module import, zero dependencies
publicApiKey to load()
to enable usage tracking and higher rate limits.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;