New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@device-router/middleware-express

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@device-router/middleware-express

Express middleware for DeviceRouter — device classification and rendering hints per request

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

@device-router/middleware-express

Express middleware for DeviceRouter. Adds device classification and rendering hints to every request.

Installation

pnpm add @device-router/middleware-express @device-router/storage cookie-parser

For automatic probe injection:

pnpm add @device-router/probe

Quick start

import express from 'express';
import cookieParser from 'cookie-parser';
import { createDeviceRouter } from '@device-router/middleware-express';
import { MemoryStorageAdapter } from '@device-router/storage';

const app = express();
const { middleware, probeEndpoint } = createDeviceRouter({
  storage: new MemoryStorageAdapter(),
});

app.use(express.json());
app.use(cookieParser());
app.post('/device-router/probe', probeEndpoint);
app.use(middleware);

app.get('/', (req, res) => {
  const profile = req.deviceProfile;

  if (profile?.hints.preferServerRendering) {
    return res.send(renderSSR());
  }
  if (profile?.hints.deferHeavyComponents) {
    return res.send(renderLite());
  }
  res.send(renderFull());
});

app.listen(3000);

How it works

  • Probe endpoint receives device signals from the browser and stores a classified profile
  • Middleware reads the session cookie, loads the profile from storage, and attaches it to req.deviceProfile
  • Your route handlers use req.deviceProfile.hints and req.deviceProfile.tiers to adapt responses

Probe auto-injection

Automatically inject the probe <script> into HTML responses before </head>:

const { middleware, probeEndpoint, injectionMiddleware } = createDeviceRouter({
  storage: new MemoryStorageAdapter(),
  injectProbe: true,
  probeNonce: 'my-csp-nonce', // optional, for Content-Security-Policy
});

app.use(injectionMiddleware); // before routes
app.post('/device-router/probe', probeEndpoint);
app.use(middleware);

Streaming responses: Injection intercepts res.send() and requires the body to be a string. If you stream HTML via res.write(), the injection is silently skipped. Add the probe <script> tag to your HTML shell manually instead.

Custom thresholds

Override default tier classification boundaries:

const { middleware, probeEndpoint } = createDeviceRouter({
  storage,
  thresholds: {
    cpu: { lowUpperBound: 4, midUpperBound: 8 },
    memory: { midUpperBound: 8 },
  },
});

Options

OptionTypeDefaultDescription
storageStorageAdapter(required)Storage backend for profiles
cookieNamestring'device-router-session'Session cookie name
cookiePathstring'/'Cookie path
cookieSecurebooleanfalseSet Secure flag on the session cookie
ttlnumber86400 (24h)Profile TTL in seconds
rejectBotsbooleantrueReject bot/crawler probe submissions
probePathstringCustom probe endpoint path
thresholdsTierThresholdsBuilt-in defaultsCustom tier thresholds (validated at startup)
injectProbebooleanfalseAuto-inject probe into HTML
probeNoncestring | ((req: Request) => string)CSP nonce for injected script
fallbackProfileFallbackProfileFallback profile for first requests
classifyFromHeadersbooleanfalseClassify from UA/Client Hints
onEventOnEventCallbackObservability callback for logging/metrics

Observability

Pass an onEvent callback to receive events for classification, storage, bot rejection, and errors:

const { middleware, probeEndpoint } = createDeviceRouter({
  storage,
  onEvent: (event) => {
    console.log(`[device-router] ${event.type}`, event);
  },
});

See the Observability guide for details.

Standalone usage

Use the individual pieces when you need fine-grained control over each component:

import {
  createMiddleware,
  createProbeEndpoint,
  createInjectionMiddleware,
  loadProbeScript,
} from '@device-router/middleware-express';

// Use only what you need
const middleware = createMiddleware({ storage, thresholds });
const endpoint = createProbeEndpoint({ storage, ttl: 3600 });
const injection = createInjectionMiddleware({
  probeScript: loadProbeScript(),
});

app.use(injection);
app.post('/device-router/probe', endpoint);
app.use(middleware);

loadProbeScript() reads the @device-router/probe bundle and optionally rewrites the endpoint URL via { probePath }. Thresholds passed to createMiddleware() are validated at creation time.

Exports

  • createDeviceRouter(options) — All-in-one setup returning { middleware, probeEndpoint, injectionMiddleware? }
  • createMiddleware(options) — Standalone middleware (validates thresholds)
  • createProbeEndpoint(options) — Standalone probe endpoint handler
  • createInjectionMiddleware(options) — Standalone probe injection middleware
  • loadProbeScript(options?) — Load the minified probe script for use with createInjectionMiddleware()

Prerequisites

  • cookie-parser — required for session cookie handling (req.cookies)

Compatibility

  • Express 4.x and 5.x
  • Node.js >= 20

License

MIT

Keywords

device-router

FAQs

Package last updated on 04 Mar 2026

Related posts