npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fingerprintiq/js

v0.5.0

Published

Browser fingerprinting SDK — identify visitors with 99%+ accuracy using 41 client signals fused with server-side TLS/JA4 analysis

Readme

@fingerprintiq/js

npm npm downloads bundle size license

Browser fingerprinting SDK with 99%+ accuracy. 41 client signals fused with server-side TLS/JA4 analysis.

Install

npm install @fingerprintiq/js
# or
pnpm add @fingerprintiq/js
# or
yarn add @fingerprintiq/js

Quick Start

import FingerprintIQ from '@fingerprintiq/js';

const fiq = new FingerprintIQ({ apiKey: 'fiq_live_...' });
const result = await fiq.identify();

console.log(result.visitorId);      // "iq_01abc..."
console.log(result.confidence);     // 0.97
console.log(result.botProbability); // 0.03

Grab an API key from the FingerprintIQ dashboard — free tier includes 10,000 identifications/month.

Framework Integrations

React

import { useFingerprintIQ } from '@fingerprintiq/js/react';

function Component() {
  const { result, loading, error } = useFingerprintIQ({ apiKey: 'fiq_live_...' });

  if (loading) return <p>Identifying…</p>;
  if (error) return <p>Error: {error.message}</p>;
  return <p>Visitor: {result?.visitorId}</p>;
}

Next.js (App Router)

'use client';
import { useFingerprintIQ } from '@fingerprintiq/js/next';

export function VisitorGate() {
  const { result } = useFingerprintIQ({ apiKey: 'fiq_live_...' });
  return <p>Visitor: {result?.visitorId}</p>;
}

Vue 3

<script setup lang="ts">
import { useFingerprintIQ } from '@fingerprintiq/js/vue';

const { result, loading, error } = useFingerprintIQ({ apiKey: 'fiq_live_...' });
</script>

<template>
  <p v-if="loading">Identifying…</p>
  <p v-else-if="error">Error: {{ error.message }}</p>
  <p v-else>Visitor: {{ result?.visitorId }}</p>
</template>

Each subpath auto-calls identify() on mount. Pass manual: true to skip and call identify() yourself when ready.

Signals Collected

  • Canvas 2D, WebGL, WebGPU
  • AudioContext timing
  • Font enumeration (650+ fonts)
  • WASM CPU microarchitecture
  • Navigator deep mining
  • CSS media queries
  • Screen & display
  • Prototype lie detection
  • Wallet extension detection (MetaMask, Phantom, etc.) — passive, never triggers popups
  • Storage persistence
  • WebRTC LAN IP
  • And more...

Server-side signals (JA4 TLS, HTTP/2 settings, ASN classification, RTT coherence) are fused automatically at the edge.

Configuration

const fiq = new FingerprintIQ({
  apiKey: 'fiq_live_...',     // Required
  endpoint: 'https://...',    // Custom endpoint (default: fingerprintiq.com)
  timeout: 5000,              // API timeout in ms (default: 5000)
  detectWallets: true,        // Detect crypto wallets (default: true)
});

Signal collectors are individually time-boxed so one slow browser API cannot hold up the full identify() call. User-Agent Client Hints bootstrap runs in the background and is reused on later calls.

Response

interface IdentifyResponse {
  visitorId: string;
  confidence: number;        // 0.0 - 1.0
  botProbability: number;    // 0.0 - 1.0
  visitCount: number;
  signals: {
    client: { ... };
    server: { ... };
  };
}

Sibling Packages

| Package | Purpose | |---------|---------| | @fingerprintiq/js | Browser fingerprinting (this package) | | @fingerprintiq/server | Server-side caller classification (Hono, Express) | | @fingerprintiq/pulse | CLI usage analytics and machine fingerprinting | | fingerprintiq (PyPI) | Python SDK — Identify, Sentinel, Pulse |

Contributing

This repo is a read-only public mirror. The master copy lives in the private FingerprintIQ monorepo and is synced here on every push to main. Please file issues rather than PRs.

License

MIT