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

@systemfsoftware/stryker-ignorer-kit

v0.1.1

Published

Authoring and testing kit for Stryker ignorers — typed visitors compiled to the Ignorer wire contract, and a RuleTester-shaped harness that verifies them from source snippets.

Readme

@systemfsoftware/stryker-ignorer-kit

Authoring and testing kit for the Stryker ignorer family: write an ignorer as typed visitors, verify it from source snippets.

An ignorer tells the mutation engine which code to leave alone. The engine consults every configured ignorer at each mutant candidate node; returning a reason string suppresses that node's mutants, undefined declines. This kit supplies the two layers an author actually works in — the authoring API (defineIgnorer) and the testing harness (testIgnorer) — and compiles down to the plain { name, shouldIgnore } wire contract the engine loads.

Write a new ignorer from scratch

1. The package

Create packages/ignorers/<your-ignorer>/ (the workspace glob picks it up) with the family tooling set cloned from a sibling, and these dependencies:

{
  "dependencies": {
    "@systemfsoftware/stryker-ignorer-interface": "workspace:^",
    "@systemfsoftware/stryker-ignorer-kit": "workspace:^"
  }
}

The interface package is types only (the AST vocabulary); the kit's root entry is parser-free. Your module exports one array:

export const strykerIgnorers = [myIgnorer]

Consumers wire the pair in their Stryker config — plugins takes the module specifier, ignorers the ignorer's own name (myIgnorer's name); a mismatched pair fails silent-green, so keep the two strings in step.

2. The visitors

defineIgnorer takes a visitor map keyed by AST node kind. Each visitor receives its node narrowed to that kind plus a typed context for the ancestor chain, and returns a reason string or undefined to decline:

import type { CallExpression, Expression, Node } from '@systemfsoftware/stryker-ignorer-interface'
import { defineIgnorer } from '@systemfsoftware/stryker-ignorer-kit'

export const INSIDE_TRACE = 'inside `logger.trace(...)` — diagnostic noise, not production behaviour'
export const METRIC_NAME = 'a metric name — mutating it only renames telemetry'

function isTraceCallee(callee: Expression): boolean {
  return callee.type === 'MemberExpression' && !callee.computed &&
    callee.object.type === 'Identifier' && callee.object.name === 'logger' &&
    callee.property.type === 'Identifier' && callee.property.name === 'trace'
}

function isLoggerTrace(node: Node): boolean {
  return node.type === 'CallExpression' && isTraceCallee(node.callee)
}

function isMetricCounter(call: CallExpression): boolean {
  return call.callee.type === 'MemberExpression' && !call.callee.computed &&
    call.callee.object.type === 'Identifier' && call.callee.object.name === 'metrics' &&
    call.callee.property.type === 'Identifier' && call.callee.property.name === 'counter'
}

export const strykerIgnorers = [
  defineIgnorer({
    name: 'telemetry-calls',
    visitors: {
      // Point rule: the metric-name argument itself.
      Literal: (node, ctx) => {
        const call = ctx.parentIf('CallExpression')
        return call !== undefined && isMetricCounter(call) && call.arguments[0] === node
          ? METRIC_NAME
          : undefined
      },
      // Subtree rule: everything evaluated inside a logger.trace call.
      onAnyNode: (_node, ctx) => (ctx.ancestors.some(isLoggerTrace) ? INSIDE_TRACE : undefined),
    },
  }),
]

The context, nearest-first:

| Member | Meaning | | ---------------------- | ------------------------------------------------------------------ | | ctx.ancestors | the raw chain, parent first, root last, excluding the visited node | | ctx.parentIf(kind) | the immediate parent narrowed to kind, else undefined | | ctx.ancestorIf(kind) | the nearest chain member of kind, else undefined |

Keys are ESTree discriminants: string, number, and boolean literals all arrive as 'Literal' (narrow further on typeof node.value), not 'StringLiteral'. A visitor returning undefined falls through to onAnyNode; a node no typed visitor claims goes straight there.

3. The tests

testIgnorer (from the ./tester entry) parses your snippets with the same parser convention the instrumenter uses, walks them with host-shaped ancestor semantics, and consults your ignorer at every node. One runner test is registered per case:

import { testIgnorer } from '@systemfsoftware/stryker-ignorer-kit/tester'
import { strykerIgnorers } from '../src/mod.js'

await testIgnorer(strykerIgnorers[0], {
  kept: [
    { name: 'ordinary call', code: 'const client = createClient(host)' },
    { name: 'logger.info still mutates', code: 'logger.info("ready")' },
  ],
  ignored: [
    {
      name: 'metric name',
      code: 'metrics.counter("requests")',
      ignores: [{ text: '"requests"', reason: METRIC_NAME }],
    },
    {
      name: 'everything under logger.trace',
      code: 'logger.trace(sum(a, b))',
      ignores: ['sum(a, b)', 'a', 'b'],
    },
  ],
})

Case semantics:

  • kept — no node in the snippet may yield a reason.
  • ignored — each expectation must match a distinct ignored span (multiset); extra ignored spans do not fail (containment, not totality).
  • Spans are source-text slices, quotes included: the string literal in metrics.counter("requests") is "requests", not requests.
  • A bare string expectation matches on text; { text, reason } pins the reason.
  • lang defaults to ts; override per case (js, jsx, tsx).
  • A failing case throws an enumeration of its snippet, expectations, and received spans (text, node type, reason). Where no runner globals exist, testIgnorer runs every case and throws one aggregate error naming all failures.
  • keeps (either case kind) names spans that must stay live even when siblings in the same snippet are ignored — for rows that pin one node's liveness inside a partly-ignored expression. A kept case without keeps still asserts nothing at all is ignored.

4. Ship it

pnpm --filter <your-package> test green, api:update for the report, a changeset entry, and the README wording true to what ships. The family rules bind: zero Effect, no type assertions, complexity ≤ 2 per function — narrow with small type-predicate functions, as above.

Semantics worth knowing

  • The engine consults ignorers per mutant candidate, point-only: a reason on node X suppresses X's mutants; descendants are visited and re-judged on their own. Subtree behaviour therefore comes from scanning ctx.ancestors, never from pruning.
  • Ancestor chains are nearest-first: ancestors[0] is the parent.
  • Stryker StrykerIgnore/Restore directives and excludedMutations win before any ignorer is asked; among ignorers, the first reason in configured order wins.
  • The tester walks every node (a superset of host consultation), so a green suite pins your decision policy; host consult policy stays pinned by the engine and instrumenter suites.

API reference

| Export | Entry | What it is | | -------------------------------------------------------------------------- | ---------- | -------------------------------------------------------------------------- | | defineIgnorer(definition) | . | compiles { name, visitors } to the Ignorer wire contract | | IgnorerVisitors, IgnorerVisitor, IgnorerContext, IgnorerDefinition | . | authoring types | | testIgnorer(subject, cases) | ./tester | snippet harness; one test per case, aggregate throw without runner globals | | IgnorerCases, IgnoredCase, KeptCase, IgnoredSpan, ScriptLang | ./tester | case types |

License

Apache 2.0