Code Monkey home page Code Monkey logo

fingerprintjs's Introduction

FingerprintJS logo

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

Discord server

FingerprintJS is a 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 100% open-source, but its accuracy is limited because it's only a client-side library without a backend.

Open Source library accuracy Fingerprint Pro accuracy
FingerprintJS has limited accuracy (40% - 60%) and functionality, because it's not possible to do many things without a backend. Fingerprint Pro is a high-scale device identity platform that has both client-side and server-side components and identifies browsers and mobile devices with a 99.5% accuracy. Fingerprint Pro starts at $200/mo for up to 100K API calls.
FingerprintJS library demo: https://fingerprintjs.github.io/fingerprintjs Fingerprint Pro demo: https://fingerprint.com/demo

Quick start

<script>
  // Initialize the agent at application startup.
  const fpPromise = import('https://openfpcdn.io/fingerprintjs/v3')
    .then(FingerprintJS => FingerprintJS.load())

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

Run this code

๐Ÿ“• Full documentation

โš›๏ธ Sample usage with React on the StackBlitz platform

Use Fingerprint Pro to get 99.5% identification accuracy

Fingerprint Pro is a professional visitor identification service that processes all information server-side and transmits it securely to your servers using server-to-server APIs. Pro combines browser fingerprinting with vast amounts of auxiliary data (IP addresses, time of visit patterns, URL changes and more) to be able to reliably deduplicate different users that have identical devices, resulting in the 99.5% identification accuracy. Fingerprint Pro is available for Web, Android, iOS and other platforms.

Fingerprint Pro pricing starts at $200 per month for up to 100K API calls. Additional API calls are $2 per month for 1,000 API calls. A two-week free trial is available โ€” no credit card is required. Sign up at https://dashboard.fingerprint.com/signup.

Pro plans start at $0/month - no credit card required.

Pro screenshot

Full product comparison:

Open Source FingerprintJS Fingerprint Pro and Pro Plus

Core Features

100% open sourceYesNo1
Accuracyup to 60%99.5%
Standard identification input signals
Screen, OS, and device name
โœ“โœ“
Advanced identification input signals
Canvas, audio, fonts
โœ“โœ“
Smart signals (output)
Bot detection, device, network, and user behavior
โœ“
ID typeFingerprintVisitor ID2
ID lifetimeSeveral weeksMonths/years
ID originClientServer
ID collisionsCommonRare

Mobile native SDKs

Androidโœ“โœ“
iOSโœ“โœ“
Flutterโœ“
React Nativeโœ“

Additional Features

Incognito mode detection
Works in all modern browsers - see our full list of browsers supported
โœ“
Server-side accuracy increase
Based on additional server-side signals, such as TLS crypto support, ipv4/v6 data, and others
โœ“
Query API & realtime Webhooks
build flexible workflows
โœ“
Ability to evade ad blockersSupported (NPM, own hosting)Supported (NPM + subdomain)
Geolocation
based on IP address
โœ“

Operations

Data securityYour infrastructureEncrypted at rest
StorageYour infrastructureUnlimited up to 1 yr
RegionsYour infrastructureHosting in US, EU and APAC
ComplianceYour infrastructureGDPR, CCPA, and SOC 2 Type II compliant3
SLANo SLA99.8% uptime
SupportGitHub communityBasic and advanced support options available

1. Fingerprint Pro uses the open source fingerprinting library as well as proprietary technology for increased accuracy and identifier stability.

2. Visitor IDs, in comparison to fingerprints, include server-side techniques, are deduplicated, and utilize fuzzy matching to result in a more accurate and stable identifier. Fingerprint hashes rely on an exact match across all browser attributes, making them less stable across > 4-week time intervals.

3. Fingerprint Pro is GDPR and CCPA compliant, ISO 27001 certified, and SOC 2 Type II compliant. You still need to be compliant as the data controller and use the identification for fraud prevention under legitimate interest or ask for user consent.

Pro result example
{
  "requestId": "HFMlljrzKEiZmhUNDx7Z",
  "visitorId": "kHqPGWS1Mj18sZFsP8Wl",
  "visitorFound": true,
  "confidence": { "score": 0.995 },
  "incognito": false,
  "browserName": "Chrome",
  "browserVersion": "92.0.4515.107",
  "os": "Mac OS X",
  "osVersion": "10.15.6",
  "device": "Other",
  "ip": "192.65.67.131",
  "ipLocation": {
    "accuracyRadius": 100,
    "latitude": 37.409657,
    "longitude": -121.965467
    // ...
  },
  "firstSeenAt": {
    "global": "2022-03-16T11:26:45.362Z",
    "subscription": "2022-03-16T11:31:01.101Z"
  },
  "lastSeenAt": {
    "global": "2022-05-21T18:05:43.023Z",
    "subscription": "2022-05-20T05:41:29.926Z"
  }
}

Resources

๐Ÿฟ Live demo

โฑ How to upgrade from open source FingerprintJS to Fingerprint Pro in 30 seconds

๐Ÿ“• Fingerprint Pro documentation

โ–ถ๏ธ Video: use Fingerprint Pro to prevent multiple signups

Migrating from v2

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 open-source community and other users with similar issues. However, if you require private support, please email us at [email protected].

Contributing

See the contribution guidelines to learn how to start a playground, test, and build.

fingerprintjs's People

Contributors

finesse avatar valve avatar jonashaag avatar dependabot[bot] avatar antoinevastel avatar sanasol avatar makma avatar fpkamp avatar undemian avatar dj-stormtrooper avatar nuschk avatar chandra158 avatar hiuny avatar msp avatar bayotop avatar sleepprogger avatar grossacasac avatar skcopland avatar jurouhlar avatar hmaesta avatar guzzter avatar otanim avatar triptec avatar szepeviktor avatar tcyrus avatar timgates42 avatar skapoor avatar schinkentanz avatar stavares843 avatar robertjgabriel avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.