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

@noidme/am-i-bot

v0.1.0-beta.0

Published

am-i-bot — consent-native bot / fraud detection. Client signals for telling a human from automation: driver-injected automation tells + CDP stack markers, incognito/private-mode, a LOCAL behavioral anomaly score (raw events never leave the device), and a

Readme

@noidme/am-i-bot

Consent-native bot / fraud detection. The client-side signals for telling a human from automation — delivered as public facts and a raise-only score, never a verdict (the verdict happens server-side).

  • Automation tells (EnvProbe): navigator.webdriver + headless UA + driver-injected globals (playwright/selenium/chromedriver $cdc_/phantom) + a CDP eval-stack marker that survives stealth plugins.
  • Incognito / private mode (StorageProbe): a StorageManager-quota heuristic.
  • Local behavioral score (behavior): pointer + timing patterns scored on-deviceraw events never leave the device, only the [0,1] score does (and it's treated raise-only server-side).
  • Signed-challenge liveness (DeviceKey): a non-extractable ECDSA device key — page JS can sign a server challenge but can never exfiltrate the key, so a bot can't relay/impersonate.

Zero-dependency. Consent comes from @noidme/consent (the window.noidme bridge); the server engine turns these into a class (human / bot / declared-agent), a suspectScore, and a livenessVerified — combined with un-fakeable server-side timing. For device identity see @noidme/mac-print; the all-in-one agent is @noidme/glassprint.

Install

npm i @noidme/am-i-bot

Use

import { ConsentGate, resolveEngine, BOT_SIGNAL_PROBES, createBehaviorCollector, DeviceKey, createMemoryKeyStore } from '@noidme/am-i-bot';

const gate = new ConsentGate(await resolveEngine(2000));

// 1. Collect the public automation/incognito facts (gated under security-fraud).
const signals = [];
for (const f of BOT_SIGNAL_PROBES) {
  if (!gate.granted(f.purpose)) continue;
  const s = await f.create(gate).read();
  if (s) signals.push(s);
}

// 2. Score behavior locally (raw events stay on the device; only the score is sent).
const behavior = createBehaviorCollector(gate);
behavior.start();
// … later, at submit time:
const anomalyScore = behavior.flush();   // number in [0,1] or null

// 3. Answer a server liveness challenge with the non-extractable device key.
const key = new DeviceKey(createMemoryKeyStore());       // IndexedDB store in the browser
const proof = await key.sign(`${cid}|${nonce}|${anomalyScore}`);

Honest limits

The behavioral scorer ships in the client, so a determined bot can read + evade it — it's a cheap pre-filter against naive automation, treated raise-only. The robust anti-bot signal is server-side (request-timing regularity the client can't fake). Liveness proves a cooperating device answered a challenge, not a human. All of this is additive risk data, never a blind verdict.

License

MIT.