The world's easiest, smallest and powerful visitor identifier for browsers.
This package generates a unique ID/String for different browsers. Like chrome, Firefox or any other browsers which support `canvas` and `audio` fingerprinting. You can easily do the browser fingerprinting with this library. Its small and minimal.
⚠ The code is completely open source and forked from the original work of Rajesh-Royal
The algorithms used to encrypt/decrypt data -
murmurhash3_32_gc
,cyrb53
andjavaHashCode
. Code is inside.src/code/EncryptDecrypt.js
.
Broprint.js helps JavaScript developers code visitors identifier more simply, readably, and securely. Whether you need to find a unique visitor, do analytics, browser fingerprinting, or do anything of the like while even preventing frauds, we've got you covered at a cryptographically strong level. The best part? Our library is extremely lightweight and developer friendly- which means it won't take a toll on your project, and it's uber-simple to implement. This library works on the concept of canvas fingerprint and audio fingerprint, the final result which a user get is the combination of audio and canvas fingerprint. We are using cryptojs under the hood for encryptions but you can easily tweek the library to remove the dependency.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/@clickwithclark/broprint.js@latest/lib/UMD/index.js"></script>
<script>
fingerprint
.getCurrentBrowserFingerPrint()
.then((identity) =>
alert(`Here is your unique fingerprint: ${identity}`)
);
</script>
<title>FingerPrint</title>
</head>
<body></body>
</html>
- From version
1.1.0
onwards we have a dependencycrypto-js
. If you do not want to have this dependency then use the earlier versions of this library.
If you want to use it in simple .html
file, please read the index.html
file in the root directory.
This repository is for educational and demonstration purposes only!