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

relacher

v0.0.6

Published

Scriptable release orchestration library for monorepos

Readme

Relacher

NPM Version NPM Downloads License

Relacher is a scriptable, workspace-aware release orchestration library designed for monorepos.

Relacher

Features

  • 🤖 Conventional Commits Engine: Analyzes commit patterns to determine if modifications warrant a patch, minor, or major bump.
  • 🔗 Topological Cascading Rules: Automatically tracks internal crate dependencies, propagating downstream version updates throughout your workspace.
  • 🛠️ TypeScript-First Configuration: Declare, modify, and customize your release steps in code (via Bun, Deno, or Node) rather than static YAML or TOML configs.
  • 📝 Custom Changelog Rendering: Flexible templating interfaces to format changelog files with precise controls.

Why another Versionning tool?

Most releases tools are configuration based, they often run as "all-or-nothing" CI black boxes. You execute the command, and it commits, tags, and publishes automatically. Think of them as large functions that take your whole toml config and repo state as arguments.

Since relacher is exposed as a typescript library you have full control of each step of the release lifecycle, you can replace or extends blocks as-needed without needing an extensive plugin system.

  // cargoDeps will analyzer your workspace and form a graph of every crates
  const CargoDeps = cargoDeps(tempDir).on('cli_tool', (c) => c
      .update(
        regexUpdate({
          path: './flake.nix',
          search: 'version = "[^"]+"',
          replace: 'version = "{{version}}"',
        }),
      )
      .update(
        regexUpdate({
          path: './README.md',
          search: 'CLI Tool v[^\\s]+',
          replace: 'CLI Tool v{{version}}',
        }),
      )
      .update(
        changelogUpdate({
          path: './crates/cli_tool/CHANGELOG.md',
        }),
      )
      .update(
        changelogUpdate({
          path: './CHANGELOG.md',
          global: true,
          template: cliffTemplate,
        }),
      ),
  );

  // this is how a crate is stored internally (simplified), notice how it's
  // just a toml parser under the hood, no mention of rust, you can copy the
  // source code of the cargo parser and pretty much adapt it to any setup of your
  // liking:
  //
  // {
  //  "name": "cli_tool",
  //  "watch": ["crates/cli_tool"],
  //  "depends": ["plugin_api"],
  //  "updates": [
  //     {
  //      "kind": "toml",
  //      "path": "crates/cli_tool/Cargo.toml",
  //      "toml": "package.version"
  //     },
  //     // flake.nix, regex, changelog...
  //  ]
  // }

  // ... You could prepare more actions here, like adding npm deps.

  const vcs = new JjVcsProvider(tempDir);

  const updates = await prepare(CargoDeps, vcs, {
    cwd: tempDir,
    sizes: {
      major: { pattern: '^[a-z]+(?:\\([^)]+\\))?!:|BREAKING CHANGE' },
      minor: { pattern: '^feat|^revert' },
      patch: { pattern: '^fix|^build|^refactor|^nit|^style' },
      skip: { pattern: '^release|^chore|^infra|^docs|^test|^ci|^build' },
    },
    cascade: {
      patch: {
        skip: 'patch',
        patch: 'patch',
        minor: 'minor',
        major: 'minor',
      },
    },
  });

  prettyPrint(updates);

  const ans = prompt("Proceed with staging and committing release? [y/N]");
  if (ans?.trim().toLowerCase() === "y") {
    await run(updates, vcs, { cwd: root });
    console.log("Release tags and files written successfully.");
  }

📦 Installation

Add relacher to your JavaScript or TypeScript workspace:

bun add relacher --dev
# or
pnpm install relacher --save-dev

🛠️ Configuration & Customization

Designing Custom Changelogs

You can supply your own renderer directly through the template option in changelogUpdate:

import type { ChangelogContext } from "relacher";

function customTemplate({ version, date, commits }: ChangelogContext): string {
  let lines = [`## [${version}] - ${date}\n`];

  for (const commit of commits) {
    const icon = commit.isBreaking ? "⚠️" : commit.type === "feat" ? "✨" : "🐛";
    lines.push(`- ${icon} **${commit.scope || "general"}:** ${commit.description}`);
  }

  return lines.join("\n");
}

🙏 Credits