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

@aklinker1/zero-changelog

v0.1.5

Published

Zero-dependency, conventional commit release and changelog generator with monorepo support

Readme

@aklinker1/zero-changelog

JSR NPM Version Docs Install Size

Zero-dependency, conventional commit release and changelog generator with monorepo support

bun add @aklinker1/zero-changelog

Features

  • 📦 Zero dependencies, e18e first
  • 🏗️ Monorepo & sub-directory support
  • 🛠️ Github Action, JS API, CLI
  • 🚀 Runs custom publish scripts
  • 📊 Summarize unreleased changes

Options

Refer to the API reference:

Usage

GitHub Action

- uses: aklinker1/zero-changelog/actions/[email protected]
  with:
    # options...

JS API

import { release } from "@aklinker1/zero-changelog/release";

await release({
  // options...
});

CLI

TODO: CLI not implemented yet.

Run any command with --help to see available options.

bun zero-changelog --help
bun zero-changelog release --help
bun zero-changelog sync-releases --help
bun zero-changelog summarize-unreleased-changes --help

Semver

@aklinker1/zero-changelog does not implement the entire Semver spec. It only supports the following types of versions:

  • Unstable: 0.[0-9]+.[0-9]+

    • Examples: 0.0.0, 0.12.1, 0.1.9, 0.20.17
  • Prerelease: [1-9][0-9]*.0.0-\w+.[0-9]+

    • Examples: 1.0.0-alpha.1, 2.0.0-beta.3, 3.0.0-rc.10
  • Stable: [1-9][0-9]*.[0-9]+.[0-9]+

    • Examples: 1.1.0, 2.0.1, 3.0.0

It does NOT support:

  • Truncated versions with one or two digits:
    • Examples: 1.0, 2
  • Unstable prereleases:
    • Examples: 0.2.0-alpha.1
  • Non X.0.0 prereleases:
    • Examples: 1.1.0-rc.1, 1.0.5-alpha.1
  • Other prerelease formats:
    • Examples: 0.2.0-0.3.2, 0.2.0-1

This allows the package to have 0 dependencies.

Relative Version Bumping

When bumping the version by major, minor, or patch, either by setting the bump option or auto-detecting the type based on commits, there are some special cases where the version may not be bumped as expected:

  1. Unstable: The type of semver change will be lowered by 1, so majorminor, minorpatch, patchpatch.

    • Examples:
      • 0.1.0major0.2.0
      • 0.1.0minor0.1.1
      • 0.1.0patch0.1.1
  2. Prereleases: The final integer will always be updated.

    • Examples:
      • 1.0.0-alpha.1major1.0.0-alpha.2
      • 1.0.0-alpha.1minor1.0.0-alpha.2
      • 1.0.0-alpha.1patch1.0.0-alpha.2

So if you want to switch between versions types (stable ↔ unstable ↔ pre-release), like 0.7.51.0.0 or 2.0.0-rc.42.0.0, you need to provide the next version number for the bump option instead of using major/minor/patch:

await release({
  bump: "2.0.0",
});

Otherwise stable versions will remain stable, unstable will remain unstable, and prereleases will remain prereleases.

Plan

Release:

  1. List git commits
  2. Detect type of version bump
  3. Generate changelog
  4. Bump version in version files
  5. Update changelog
  6. Git commit & tag
  7. Git push
  8. Create release

Sync Releases:

  1. Parse changelog
  2. Update each release to match changelog

Summarize Unreleased Changes:

  1. List commits in each directory since the last commit
  2. Print and return the summary

TODO

  • [x] Structure for package + action
  • [x] Implement tests
  • [x] Implement git logic
  • [ ] Implement sync releases
  • [x] Glob patterns for github action
  • [x] Implement unreleased commit summary
  • [ ] CLI?
  • [x] Implement alpha/beta version bumping