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

aegismut

v0.1.1

Published

Angular-first mutation testing for TypeScript projects.

Readme

AegisMut

AegisMut is an Angular-first mutation testing engine prototype designed around correctness for large TypeScript, Jest, and Vitest projects.

It combines a Rust control plane with TypeScript runner adapters:

  • Rust parser, instrumentation, scheduling, cache keys, IPC types, CLI, and reports
  • TypeScript runtime and real Jest/Vitest adapter integrations
  • thunk-based mutant switching with strict one-mutant fallback
  • dry-run mutation coverage collection
  • branch-hit ambiguity guards
  • Portable single-file HTML report and Stryker-compatible JSON report output
  • Angular workspace, TestBed, template, and Nx metadata discovery

Repository Layout

crates/      Rust crates for CLI, core models, parser, instrumentation, scheduler, cache, report, and IPC
packages/    TypeScript runtime, shared runner contract, Jest/Vitest adapters, Angular adapter
fixtures/    Real Jest/Vitest and Angular-oriented fixtures
docs/        Architecture, correctness model, runner contract, cache, and operator documentation
tests/       Integration tests for fixture mutation runs

Quick Start

Install the CLI from npm:

npm install -g aegismut
aegis run --runner jest --config aegis.config.json

The npm package currently builds the Rust CLI during install, so Rust/Cargo must be available on the machine. Install Rust with rustup if npm install -g aegismut reports that Cargo is missing.

Publish from this repository:

npm login
npm run publish:npm

Packages are published in dependency order: @aegismut/runtime, @aegismut/shared-runner, runner adapters, Angular adapter, then the aegismut CLI package.

Local development:

pnpm install
npm run build
pnpm test
cargo test --workspace

Run the fixture mutation flows:

cargo run -p aegis-cli -- run --runner jest --config fixtures/angular-jest/aegis.config.json
cargo run -p aegis-cli -- run --runner vitest --config fixtures/angular-vitest/aegis.config.json

Reports are emitted under each fixture's reports/ directory:

  • index.html: self-contained report viewer with embedded data
  • aegis-report.json: native AegisMut JSON
  • stryker-report.json: Stryker-compatible JSON

Correctness Model

AegisMut treats strict first-order mutation execution as the source of truth: same real runner, same user config, one mutant active at a time, and equivalent timeout/pass/fail/error interpretation.

Fast paths are permitted only when they are semantics-preserving, verified, or guarded by fallback. Variant results with more than one mutated branch taken are considered ambiguous and must be split/replayed or routed to strict fallback.

Status

This repository contains the initial implementation and vertical slice. It is intentionally conservative: performance-oriented worker and virtualization skeletons exist, but correctness remains the baseline.

Known limitations are documented in:

License

MIT