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

@garrick0/c2-core-domain

v6.1.0

Published

C2 Core Domain - Pure domain types for the check system

Readme

@garrick0/c2-core-domain

Pure domain types and stateless functions for the C2 check system.

Overview

This package contains the domain layer of the C2 microkernel architecture. It defines the core abstractions for the check system with zero external dependencies.

Installation

npm install @garrick0/c2-core-domain

Key Concepts

Observable

A versioned, immutable snapshot of observed state with query capability.

interface Observable<TData> {
  readonly id: ObservableId;      // { type: 'git-branch', key: '/path' }
  readonly version: number;
  readonly timestamp: Date;
  readonly data: TData;
  query(params: QueryParams): QueryResponse;
}

CheckDefinition

A declarative specification of a check that runs against an Observable.

interface CheckDefinition {
  id: string;                    // 'git:no-protected-branch'
  name: string;                  // 'No Protected Branch'
  observableType: string;        // 'git-branch'
  query: QueryParams;            // { operation: 'branchIsProtected' }
  mustBe: boolean;               // Expected query result
  message: string | ((response, observable) => string);
  defaultSeverity?: ViolationSeverity;
}

CheckRunner

Executes checks against Observables and returns results.

const runner = createCheckRunner();
const result = runner.runOne(observable, activeCheck);
// { checkId, passed, violation?, response, ... }

API Reference

Types

| Type | Description | |------|-------------| | Observable<TData> | Versioned snapshot with query capability | | ObservableId | { type: string, key: string } | | QueryParams | { operation: string, ...params } | | QueryResponse<T> | { ok: boolean, data: T, message? } | | CheckDefinition | Declarative check specification | | CheckConfigEntry | Configuration for a check | | ActiveCheckDefinition | CheckDefinition resolved with config | | CheckResult | Result of running a single check | | CheckBatchResult | Result of running multiple checks | | Violation | Represents a failed check | | ViolationSeverity | 'error' \| 'warning' \| 'info' | | Result<T, E> | Functional error handling type |

Functions

// CheckDefinition resolution
resolveCheckDefinition(definition, configEntry?): ActiveCheckDefinition | null
resolveCheckDefinitions(definitions, configMap): ActiveCheckDefinition[]

// CheckRunner
createCheckRunner(): ICheckRunner

// Result utilities
ok(value): Result<T, never>
err(error): Result<never, E>
isOk(result): result is Ok<T>
isErr(result): result is Err<E>
map(result, fn): Result<U, E>
flatMap(result, fn): Result<U, E>
mapError(result, fn): Result<T, F>
unwrapOr(result, defaultValue): T
combine(results): Result<T[], E>
tryCatch(fn): Result<T, Error>
asyncTryCatch(fn): Promise<Result<T, Error>>

Usage Example

import {
  createCheckRunner,
  resolveCheckDefinition,
  type Observable,
  type CheckDefinition,
} from '@garrick0/c2-core-domain';

// Create a mock observable
const observable: Observable<{ value: number }> = {
  id: { type: 'test', key: 'example' },
  version: 1,
  timestamp: new Date(),
  data: { value: 42 },
  query(params) {
    if (params.operation === 'isAbove') {
      const threshold = (params.threshold as number) ?? 0;
      return { ok: this.data.value > threshold, data: { value: this.data.value } };
    }
    return { ok: false, data: null };
  },
};

// Define a check
const checkDef: CheckDefinition = {
  id: 'test:value-above-10',
  name: 'Value Above 10',
  observableType: 'test',
  query: { operation: 'isAbove', threshold: 10 },
  mustBe: true,
  message: 'Value must be above 10',
  defaultSeverity: 'error',
};

// Resolve and run
const activeCheck = resolveCheckDefinition(checkDef);
if (activeCheck) {
  const runner = createCheckRunner();
  const result = runner.runOne(observable, activeCheck);
  console.log(result.passed);  // true (42 > 10)
}

Architecture

This package is the innermost layer of the C2 architecture:

c2-cli → c2 → core-application → core-domain (this package)
                    ↓
           observable-git (plugin)

It has no dependencies on other packages and contains only:

  • Type definitions
  • Pure functions
  • Stateless services

Development

# Build
npx nx build @garrick0/c2-core-domain

# Test
npx nx test @garrick0/c2-core-domain

# Lint
npx nx lint @garrick0/c2-core-domain

License

MIT