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

@isnotai/text-monitor

v0.1.2

Published

Is Not AI Text Monitor — keystroke and authorship signal capture for AI-detection scoring. Public-surface preview; full capture pipeline in v1.0.

Readme

@isnotai/text-monitor

Keystroke and authorship signal capture for the Is Not AI AI-detection platform. Standalone npm package; no separate SDK install required.

v0.1.x is a public-surface preview. It validates the documented options and exposes the locked createMonitor API so you can pin the import path today, but the recorder loop is not yet active. attach() emits a one-time console.warn. Full capture and reporting ships in v1.0; pin @isnotai/text-monitor now and the v1.0 update turns capture on without code changes on your side.

The canonical install reference is isnotai.com/docs/sdk. This README is a quick-start mirror; if the two ever drift, the docs win.

Install

npm install @isnotai/text-monitor

Usage

import { createMonitor } from '@isnotai/text-monitor';

const monitor = createMonitor({
  integrationId: 'a7f3c2e1',  // 8-char hex from your dashboard
  region: 'us'                // 'us' | 'eu' — must match your account region
});

monitor.attach(document.getElementById('essay'));
// Later, when the field unmounts:
monitor.detach(document.getElementById('essay'));

attach() is idempotent. detach() of a never-attached element is a no-op.

Options

| Option | Type | Required | Description | |---|---|---|---| | integrationId | string | yes | 8-character lowercase hex from the dashboard. Public-by-design. | | region | 'us' \| 'eu' | yes | Must match the account's region. Wrong region = session rejected (when capture is live). | | extraSelectors | string[] | no | CSS selectors for custom editors beyond the built-in adapter set. |

The package auto-dispatches to the right adapter when you call attach(). Built-in coverage:

  • <textarea>
  • <input type="text">
  • Any element with contenteditable="true"
  • Quill editor instances
  • TinyMCE editor instances

Anything else falls back to universal content diffing.

Content Security Policy

Allow the regional reporting hosts in connect-src:

| Region | connect-src | |---|---| | us | https://chl.isnot.ai and wss://chl.isnot.ai | | eu | https://chl-eu.isnot.ai and wss://chl-eu.isnot.ai |

If you also load cdn.isnotai.com/text-monitor/auto.js, add https://cdn.isnotai.com to script-src.

Declarative install (auto.js)

The CDN-hosted auto.js form is documented at isnotai.com/docs/sdk. It reads its config from a data-config attribute and attaches automatically on DOMContentLoaded. No runtime attach/detach is exposed for the declarative form — use the npm package if you need programmatic control.

What v0.1.x ships, and what's coming

| | v0.1.x | v1.0 | |---|---|---| | createMonitor, attach, detach public surface | ✅ locked | ✅ unchanged | | Strict option validation | ✅ | ✅ | | Auto-dispatch built-in adapters | — | ✅ | | Capture client (network, queue, retry) | — | ✅ | | Writing-session identity | — | ✅ | | Classifier | — (server-side, separate API) | (server-side) |

The public surface is locked in v0.1.x — your call sites do not need to change when v1.0 ships.

License

Use of this software is governed by the Is Not AI Terms of Service. See LICENSE in this package for the full notice.