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

tls-devicer

v0.2.10

Published

TLS Intelligence Middleware for the FP-Devicer Intelligence Suite

Readme

tls-devicer

TLS Intelligence Middleware for the FP-Devicer Intelligence Suite. Developed by Gateway Corporate Solutions.


Overview

tls-devicer passively collects and compares JA4 fingerprints, JA3/JA3S, extension order, cipher order, HTTP/2 settings, and header consistency to strengthen device identity matching.

Important: tls-devicer does not derive JA4 itself. It consumes JA4 or related TLS signals from headers injected by an upstream edge such as Cloudflare, HAProxy with custom logic, Envoy filters, or another TLS terminator that can compute and forward them.

What it does

| Step | Description | |------|-------------| | TLS profile ingestion | Accepts JA4, JA3, JA3S, cipher suites, extension order, HTTP/2 settings, and ordered headers from middleware or request context. | | Protocol consistency | Compares the current TLS profile against historical snapshots for the same device. | | Signal scoring | Computes similarity across JA4, JA3, cipher suites, extension sets, HTTP/2 settings, header order, and stable header values. | | Anomaly detection | Emits human-readable factor keys when profiles drift in suspicious ways. | | Confidence adjustment | Applies a positive or negative confidence delta back into the DeviceManager result. |


Installation

Install tls-devicer as a standalone package:

npm install tls-devicer

Install the bundled network-intelligence pair with FP-Devicer:

npm install devicer.js ip-devicer tls-devicer

Optional peer dependencies for persistent storage:

npm install better-sqlite3
npm install ioredis
npm install pg

Install the full Devicer Intelligence Suite meta-package:

npm install @gatewaycorporate/devicer-intel

Quick start

import { createInMemoryAdapter, DeviceManager } from "devicer.js";
import { TlsManager } from "tls-devicer";

const deviceManager = new DeviceManager(createInMemoryAdapter());
const tlsManager = new TlsManager({
	licenseKey: process.env.DEVICER_LICENSE_KEY,
});

deviceManager.use(tlsManager);

app.post("/identify", async (req, res) => {
	const result = await deviceManager.identify(req.body.fpPayload, {
		tlsProfile: {
			ja4: req.headers["x-ja4"] as string | undefined,
			ja3: req.headers["x-ja3"] as string | undefined,
			headerOrder: Object.keys(req.headers),
		},
	});

	res.json(result);
});

Storage adapters

| Adapter | Import | Use case | |---------|--------|----------| | In-memory (default) | createTlsStorage | Dev / testing / single-process | | SQLite | createSqliteAdapter | Single-process production | | PostgreSQL | createPostgresAdapter | Multi-process / HA | | Redis | createRedisAdapter | Distributed / low-latency |

import { createSqliteAdapter, TlsManager } from "tls-devicer";

const tlsStorage = createSqliteAdapter("./data/tls-history.db");
await tlsStorage.init();

const tlsManager = new TlsManager({
	licenseKey: process.env.DEVICER_LICENSE_KEY,
	storage: tlsStorage,
});

Recommended setup

Stock nginx cannot generate JA4 or expose ClientHello extension lists through variables. That means the following variables do not exist in standard nginx:

  • $ssl_client_hello_ja4
  • $ssl_client_hello_extensions
  • a request variable for the client's raw HTTP/2 SETTINGS frame

Use nginx as a pass-through layer for headers that were already added by an upstream edge.

Cloudflare to nginx to app

tls-devicer accepts cf-ja4 directly, but many applications prefer normalizing that to x-ja4 before it reaches Node.

This method requires a Cloudflare Enterprise subscription.

server {
	listen 443 ssl http2;
	server_name example.com;

	ssl_certificate /etc/letsencrypt/live/example/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/example/privkey.pem;

	location / {
		proxy_pass http://127.0.0.1:3000;

		proxy_set_header Host $host;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
		proxy_set_header X-Forwarded-Proto $scheme;

		proxy_set_header X-JA4 $http_cf_ja4;
		proxy_set_header X-JA3 $http_cf_ja3_fingerprint;
	}
}

In your application, either consume x-ja4 as shown above or pass the raw Cloudflare header through unchanged. tls-devicer supports both x-ja4 and cf-ja4.

If nginx is your TLS edge

If nginx is the first TLS terminator, you have two realistic options:

  1. Use another edge or extension that computes JA4 and injects it before the request reaches your app.
  2. Run tls-devicer without JA4 and rely on the signals nginx can actually expose, such as header order and selected TLS metadata available from other headers.

For plain nginx, do not expect native JA4, raw extension-order, or client HTTP/2 SETTINGS extraction.


Plugin pipeline

Reference deployments typically bundle ip-devicer and tls-devicer together as the network-intelligence pair.

identify(payload, context)
   │
   ├─ 'ip'  post-processor  (ip-devicer, optional companion bundle)
   │     └─> complementary geo / ASN / risk signals
   │
   └─ 'tls' post-processor  (tls-devicer)
         ├─ compares JA4 / JA3 / HTTP/2 / header signals
         └─> result.tlsConsistency + result.tlsConfidenceBoost

Enrichment result shape

{
  tlsConsistency: {
    consistencyScore: number;
    ja4Match: boolean | null;
    ja3Match: boolean | null;
    cipherJaccard: number;
    extensionJaccard: number;
    http2Score: number;
    headerOrderScore: number;
    headerValueScore: number;
    tlshScore: number | null;
    isNewDevice: boolean;
    factors: string[];
  };
  tlsConfidenceBoost?: number;
}

License tiers

| Tier | Price | Devices | Capability | |------|-------|---------|------------| | Free | $0 | 10,000 | Basic features only | | Pro | $49 / mo | Unlimited | Single-server production | | Enterprise | $299 / mo | Unlimited | Multi-server production |

Production use requires a paid license. You can obtain a dual-use key for tls-devicer and ip-devicer through polar.sh here.


API reference

This project uses TypeDoc and publishes documentation at gatewaycorporate.github.io/tls-devicer.


License

Business Source License 1.1 — see license.txt.