fingerprintjs is a free, open source browsers & extensions project written in TypeScript and released under MIT. It has 28,466 GitHub stars, 2,621 forks and 19 open issues, and was last pushed 7 hours ago. On this registry it ranks #12 of 65 tracked projects in Browsers & Extensions, with 5 head-to-head comparisons available. It gained 8 stars over the last 3 tracked days.

What is fingerprintjs?

FingerprintJS is an open-source, client-side browser fingerprinting library that queries browser attributes and computes a hashed visitor identifier from them, aimed at web developers and engineering teams that need to recognise returning browsers without depending on cookies or local storage.

What it is

FingerprintJS runs entirely in the browser. It queries a set of browser attributes, hashes the resulting combination, and returns a stable visitor identifier through a small JavaScript API. The project is written in TypeScript, distributed under the MIT licence, and published both as the npm package @fingerprintjs/fingerprintjs and as a CDN build at https://openfpcdn.io/fingerprintjs/v5. It sits in the JavaScript browser ecosystem and is catalogued under Productivity & Utilities / Browsers & Extensions.

The problem it solves is identifier loss. Cookies and local storage are cleared by users, by browser privacy settings, and by incognito or private mode, so anything stored there disappears exactly when a visitor returns. A fingerprint stays the same in incognito and private mode and even when browser data is purged, which makes it a replacement for cookie-based and local-storage-based visitor tracking in contexts where a persistent identifier matters. The GitHub repository carries 28,466 stars, 2,621 forks and 19 open issues, with the last push dated 2026-09-11.

Key capabilities

  • FingerprintJS.load() initialises the agent at application startup, and fp.get() returns a result whose result.visitorId field holds the hashed visitor identifier.
  • Identifiers survive incognito or private mode and survive purging of browser data, unlike cookies and local storage.
  • Distributed as the npm package @fingerprintjs/fingerprintjs and as a versioned CDN import from https://openfpcdn.io/fingerprintjs/v5.
  • Collects browser and audio fingerprint signals, reflected in the repository topics audio-fingerprinting, browser-fingerprint and browser-fingerprinting.
  • Ships documentation files for the API, licensing terms and a comparison against the commercial product at docs/api.md, docs/licensing.md and docs/comparison.md.
  • Provides a React sample on StackBlitz and a CDN sample, alongside a live demo at https://fingerprintjs.github.io/fingerprintjs.
  • Covers fraud-adjacent use cases per its topics, including fraud, fraud-detection, detection and identification.

Who uses it and how

  • Teams building fraud detection or duplicate-account checks that need a visitor identifier which survives cookie clearing and private browsing sessions.
  • Analytics and product engineering groups that want client-side identification without operating a server-side collection pipeline.
  • Developers evaluating device intelligence before committing to the commercial tier, since the same API shape appears in the upgraded product.
  • Anyone who wants to see the behaviour first-hand can load the demo, note the identifier, then reopen the page in private or incognito mode and observe that it is unchanged.
  • Projects already shipping JavaScript bundles, which can add the library through npm or a single CDN import without a backend component.

Getting started

Install with npm install @fingerprintjs/fingerprintjs and call FingerprintJS.load() followed by fp.get(), or load the agent from the CDN URL https://openfpcdn.io/fingerprintjs/v5 if npm is not available. The README warns that the CDN import fails for users of ad blockers, Brave or Firefox, and directs those cases to the npm package instead.

How it compares

The README positions FingerprintJS directly against Fingerprint Identification, a closed-source commercial device intelligence platform from the same vendor. FingerprintJS generates and processes fingerprints in the browser under the MIT licence at no cost, whereas Fingerprint Identification processes over 100 browser and device signals server-side alongside network-level data, validates that signals have not been tampered with or replayed, and adds Smart Signals for bot detection, VPN detection and browser tampering detection behind a paid platform with a 14-day free trial. The trade is therefore licence and cost against accuracy: the open version can be self-hosted and embedded freely, while the commercial version keeps data handling and signal analysis on the vendor side.

When to use it — and when not to

FingerprintJS has no server component, so there is no database, storage service or SMTP configuration to operate — the whole integration is a client-side script. It should not be chosen when production-grade accuracy or anti-spoofing is the requirement, because the README states plainly that browser-side generation lowers accuracy significantly compared with the commercial version and that client-side fingerprints are vulnerable to spoofing and reverse engineering. Teams that need tamper-resistant identifiers, server-side signal validation or bot and VPN detection should treat this library as an evaluation step rather than a final deployment.

project readme (upstream, from github) — read inline

Build status Current NPM version Monthly downloads from NPM Monthly downloads from jsDelivr

Discord server

FingerprintJS is an open-source, client-side, browser fingerprinting library that queries browser attributes and computes a hashed visitor identifier from them. Unlike cookies and local storage, a fingerprint stays the same in incognito/private mode and even when browser data is purged.

FingerprintJS is available under the MIT license.

Demo

Visit https://fingerprintjs.github.io/fingerprintjs to see your visitor identifier.

Now, try visiting the same page in private/incognito mode and notice that the visitor identifier remains the same!

Installation

npm

npm install @fingerprintjs/fingerprintjs
import FingerprintJS from '@fingerprintjs/fingerprintjs'

// Initialize the agent at application startup.
const fpPromise = FingerprintJS.load();

(async () => {
  // Get the visitor identifier when you need it.
  const fp = await fpPromise
  const result = await fp.get()
  console.log(result.visitorId)
})()

CDN

<script>
  // Initialize the agent at application startup.
  // If you're using an ad blocker or Brave/Firefox, this import will not work.
  // Please use the npm package instead: https://t.ly/ORyXk
  const fpPromise = import('https://openfpcdn.io/fingerprintjs/v5')
    .then(FingerprintJS => FingerprintJS.load());

  (async () => {
    // Get the visitor identifier when you need it.
    const fp = await fpPromise
    const result = await fp.get()
    console.log(result.visitorId)
  })()
</script>

Run this code

Resources

📕 API Reference

⚛️ Sample usage with React on the StackBlitz platform

🔑 FingerprintJS Licensing

Limitations

Accuracy

Since FingerprintJS processes and generates fingerprints in the browser itself, the accuracy is significantly lower than in the commercial version

Security

Because fingerprints are generated and processed in the browser, they are vulnerable to spoofing and reverse engineering.

Want higher accuracy? Upgrade to Fingerprint Identification for free

FingerprintJS is great for getting started, but if you need production-grade accuracy for web or mobile, consider Fingerprint Identification. You can sign up for a free account to get started.

Fingerprint Identification is a closed-source, commercial device intelligence platform designed to prevent fraud and improve user experiences. It's an enhanced version of FingerprintJS, fully redesigned to solve the most challenging identification use cases. Unlike FingerprintJS, it combines client-side signal collection with server-side processing. It collects over 100 browser and device signals, which are then analyzed server-side alongside network-level data, including signals that are entirely invisible to the browser, allowing it to reliably deduplicate visitors with identical devices. This server-side processing also validates that signals have not been tampered with or replayed, and generates a stable visitor identifier with industry-leading accuracy that is significantly harder to spoof than a purely client-side fingerprint.

Upgrading for free also unlocks access to the Fingerprint MCP Server, letting your AI coding assistant build and interact directly with Fingerprint. To access Smart Signals (device signals such as bot detection, VPN detection, and browser tampering detection), a 14-day free trial of the full platform is available.

Check out our comparison table for a detailed breakdown of the differences between FingerprintJS and Fingerprint Identification.

Fingerprint Identification resources

🍿 Fingerprint Identification live demo

📕 Fingerprint Identification documentation

▶️ Video: Use Fingerprint Identification to prevent multiple signups by the same user

⏱️ How to upgrade from FingerprintJS to Fingerprint Identification in 30 seconds

Migrating to v5

Migrating from Migration Guide Documentation
v4 Migrating from v4 to v5 v4 documentation
v3 Migrating from v3 to v5 v3 documentation

Version policy

See the compatibility policy for the API and visitor identifiers in the version policy guide.

Supported browsers

The library supports all popular browsers. See more details and learn how to run the library in old browsers in the browser support guide.

Where to get support

Using Issues and Discussions publicly will help the community and other users with similar issues.

You can also join our Discord server to ask questions, share feedback, and connect with other developers.

If you require private support for FingerprintJS, please email us at [email protected].

Contributing

See the Contribution guidelines to learn how to contribute to the project or run the project locally. Please read it carefully before making a pull request.

Frequently asked questions

Is fingerprintjs free to use?

fingerprintjs is open source under the MIT licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does fingerprintjs do?

The most advanced free and open-source browser fingerprinting library

What is fingerprintjs written in?

fingerprintjs is primarily written in TypeScript. Its source is publicly available at https://github.com/fingerprintjs/fingerprintjs, and it has 28,466 GitHub stars.