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

@konfig.ts/cli

v0.0.10

Published

konfig CLI — build, validate, diff, and set commands for konfig.ts configurations.

Readme

@konfig.ts/cli

The konfig command-line tool — render, validate, diff, and manage the manifests described by your konfig.ts TypeScript sources. It's the front-end to @konfig.ts/core, @konfig.ts/k8s, @konfig.ts/argocd, and @konfig.ts/docker.

Install

bun add -d @konfig.ts/cli    # in a workspace that uses konfig.ts
bunx @konfig.ts/cli --help   # or run once, no install

The binary is exposed as konfig.

Runtime requirement

Most commands import() your .ts sources at runtime (konfig build prod loads the env entry file, which pulls in your modules and specs), so konfig needs a TypeScript-capable runtime:

  • Bun (recommended) — runs .ts with no flags.
  • Node ≥ 23.6 — native type stripping.
  • Node 22.6–23.5 — pass --experimental-strip-types.
  • tsxtsx node_modules/.bin/konfig ….

Pure-YAML commands that don't load your sources (e.g. konfig diff against a baseline directory) run under plain Node.

Configuration — konfig.json

Every command walks up from the cwd to find a konfig.json. Key fields:

| Field | Meaning | | ----------------------------------- | --------------------------------------------------------------------------------- | | root | directory (relative to konfig.json) holding your env/, modules/, and charts | | envs | optional <env> → { entry } map overriding the default env-file path | | outDir.manifests | where rendered manifests are written | | helm.cacheDir / helm.minVersion | Helm tarball cache and minimum helm version | | diff.baseline | baseline manifest tree for konfig diff | | clusters | per-cluster registry / ingressClass / storageClass / repositoryUrl |

An env is a named render target (prod, staging). Its entry file is envs.NAME.entry, else <root>/env/NAME.ts; that module's default export must be an AppOfApps program (see @konfig.ts/argocd).

Commands

konfig build <env>       # render manifests to outDir (input-hashed; a no-op build rewrites nothing)
konfig validate <env>    # render in-memory + structural checks; --strict adds kubeconform
konfig diff <env>        # structural diff vs. the configured baseline (ignores key reordering)
konfig set <env> <app> <imageRef>   # update one image tag in images.json
konfig crd extract|verify           # CRD TypeScript codegen from Helm charts
konfig helm fetch --all             # pre-fetch chart tarballs into the cache
konfig docker preview|write|diff <app>   # Dockerfile generation (@konfig.ts/docker)
konfig graph [--dev]                # print the workspace dependency graph

build / validate / diff share --cluster <name>, --k8s-version <ver>, and repeatable --flag k=v, all readable from your program's RenderContext.

Requirements

konfig.ts is built on Effect, currently in beta. Until Effect ships a stable 4.x, the CLI pins the exact beta it is built against and installs them as direct dependencies:

The pin is exact on purpose: Effect's beta line makes breaking changes between builds, so a looser range surfaces as ERESOLVE install conflicts. It relaxes to a caret range once Effect reaches a stable 4.x.