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

@zimoby/cep-testkit

v0.1.0

Published

Fail-closed CEP test orchestration kernel

Readme

@zimoby/cep-testkit

A Node-only development dependency for fail-closed CEP test orchestration. It must not be bundled into a CEP panel or ZXP.

Version 0.1.0 implements the accepted Milestone 0 kernel and Milestone 1 bounded CDP/runtime-identity layer. It supports Node.js 22 and builds ESM, CommonJS, and TypeScript declarations.

Release status: the source repository is public, and the complete package gates pass on macOS and Windows. npm registry availability is authoritative; the exact install command below resolves after the authorized 0.1.0 release is published.

Install

Pin the exact development version:

npm install --save-dev --save-exact @zimoby/[email protected]

Do not import this package from CEP/browser production source. Product repositories keep extension IDs, canonical entry paths, build probes, selectors, debug APIs, fixtures, AE actions, and scenarios in product-owned adapters.

Entry points

The root @zimoby/cep-testkit export contains the versioned schema and pure lifecycle kernel.

The @zimoby/cep-testkit/cdp subpath contains bounded discovery, exact canonical target selection, raw client lifecycle, runtime authentication, authenticated dispatch, reload reauthentication, and fail-closed quarantine.

import {
  CdpClient,
  authenticateRuntime,
  discoverCdpTargets,
  selectCanonicalTarget,
} from "@zimoby/cep-testkit/cdp";

CdpClient intentionally exposes no public unauthenticated dispatch method. A caller must discover, select exactly one canonical target, connect a fresh client, and successfully authenticate the independent runtime identity before using the returned authenticated session.

Operation and bootstrap dispatches are frozen CdpDispatch<T> capabilities rather than native Promise instances. Call wait(), use await, or use then/catch/finally and standard promise combinators; each consumption path acknowledges the child dispatch. CdpDispatch deliberately has no native Promise brand, so borrowed calls such as Promise.prototype.then.call(dispatch, ...) throw rather than pretending it is a Promise.

Development verification

Use Node.js 22 with npm 10.9.8:

npm run cache:seed
npm run prepublishOnly

cache:seed is the explicit network-capable dependency/cache bootstrap. The deterministic build, test, and packed-consumer probes then use the pinned lockfile and repository-local offline cache. prepublishOnly also runs a current registry-backed production dependency audit, so the complete publication gate requires network access.

Safety boundary

  • The package is Node-only test infrastructure, never panel runtime code.
  • A product must supply exact product identity and narrowly scoped callbacks.
  • Unknown CDP completion quarantines that client permanently.
  • A stale, closed, expired, copied, or unauthenticated capability cannot dispatch.
  • Package CI and loopback probes are not evidence of live After Effects behavior.
  • Live AE/CDP operations, product mutation, installation, packaging, signing, and release require separate product authorization.