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

@arcjet/inspect

v1.4.0

Published

Arcjet utilities for inspecting decisions made an the SDK

Readme

@arcjet/inspect

Arcjet utilities for inspecting decisions made by an SDK.

What is this?

Arcjet attaches lots of metadata to every decision. This package exists to more easily interact with Arcjet decisions for common patterns.

When should I use this?

You can access metadata on decisions directly but you can use this package for common patterns.

Install

This package is ESM only. Install with npm in Node.js:

npm install @arcjet/inspect

Use

import http from "node:http";
import arcjet, { detectBot } from "@arcjet/next";
import { isMissingUserAgent } from "@arcjet/inspect";

// Get your Arcjet key at <https://app.arcjet.com>.
// Set it as an environment variable instead of hard coding it.
const arcjetKey = process.env.ARCJET_KEY;

if (!arcjetKey) {
  throw new Error("Cannot find `ARCJET_KEY` environment variable");
}

const aj = arcjet({
  key: arcjetKey,
  rules: [
    // `detectBot` lets you manage automated clients and bots.
    detectBot({ allow: [], mode: "LIVE" }),
  ],
});

const server = http.createServer(async function (
  request: http.IncomingMessage,
  response: http.ServerResponse,
) {
  const decision = await aj.protect(request);

  if (decision.isDenied()) {
    response.writeHead(403, { "Content-Type": "application/json" });
    response.end(JSON.stringify({ message: "Forbidden" }));
    return;
  }

  if (decision.results.some(isMissingUserAgent)) {
    response.writeHead(403, { "Content-Type": "application/json" });
    response.end(JSON.stringify({ message: "You are a bot!" }));
    return;
  }

  response.writeHead(200, { "Content-Type": "application/json" });
  response.end(JSON.stringify({ message: "Hello world" }));
});

server.listen(8000);

API

This package exports the identifiers isMissingUserAgent, isSpoofedBot, and isVerifiedBot. There is no default export.

This package exports no TypeScript types.

isMissingUserAgent(result)

Determines if a bot rule result detected a request with a missing User-Agent header. You may want to block such requests because a missing User-Agent header is a good indicator of a malicious request, since it is recommended by HTTP Semantics from IETF.

Parameters
  • result (ArcjetRuleResult) — a rule result from the Arcjet decision
Returns

This function returns true if the bot rule result was LIVE and the request had no User-Agent header, false if the bot rule result was LIVE and the request had a User-Agent header, or undefined if the rule result was non-bot or DRY_RUN (boolean | undefined).

Availability

Bot protection is available when you use detectBot. See Bot protection on docs.arcjet.com for more info.

isSpoofedBot(result)

Determines if a bot rule result detected a spoofed request. You may want to block such requests because they were likely spoofed.

Parameters
  • result (ArcjetRuleResult) — a rule result from the Arcjet decision
Returns

This function returns true if the bot rule result was LIVE and detected a spoofed bot, false if the bot rule result was LIVE and did not detect a spoofed bot, or undefined if the rule result was non-bot or DRY_RUN (boolean | undefined).

Availability

Bot protection is available when you use detectBot. See Bot protection on docs.arcjet.com for more info.

isVerifiedBot(result)

Determines if a bot rule result detected a verified bot. You may want to allow such requests or ignore other signals for them.

Parameters
  • result (ArcjetRuleResult) — a rule result from the Arcjet decision
Returns

This function returns true if the bot rule result was LIVE and detected a verified bot, false if the bot rule result was LIVE and did not detect a verified bot, or undefined if the rule result was non-bot or DRY_RUN (boolean | undefined).

Availability

Bot protection is available when you use detectBot. See Bot protection on docs.arcjet.com for more info.

License

Apache License, Version 2.0 © Arcjet Labs, Inc.