Get started with fingerprintjs CDN
MIT licensed
FingerprintJS: library generating unique device/browser codes via parameters.
Tags:- fingerprint
Stable version
Copied!
How to start using fingerprintjs CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with fingerprintjs CDN - cdnhub.io</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/fp.min.js"></script>
<script>
async function getFingerprint() {
const fp = await FingerprintJS.load();
const result = await fp.get();
console.log('Fingerprint:', result.hash);
}
getFingerprint();
</script>
</head>
<body>
</body>
</html>
Copied!
Copied!
Copied!