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

@bbs-company/changegen

v1.0.0

Published

Generate clean, categorized changelogs from git commit history

Readme

changegen

Generate clean, categorized changelogs from git commit history using Conventional Commits.

Quick Start

npx changegen

Reads your git history since the latest tag, prints a colorized summary to the terminal, and writes CHANGELOG.md.

Installation

npm install -g changegen
# or use without installing:
npx changegen

Usage

changegen [options] [path]

| Option | Description | Default | |--------|-------------|---------| | --since <ref> | Start from a tag, commit hash, or date | latest tag | | --until <ref> | End at a tag, commit hash, or date | HEAD | | --version <ver> | Version label in the changelog header | Unreleased | | --output <mode> | markdown, terminal, or both | both | | --out <file> | Write markdown to this file | CHANGELOG.md | | --no-file | Print only; do not write to a file | — | | --list-tags | Show available tags and exit | — | | --help, -h | Show help | — |

Examples

# Generate since latest tag (default behavior)
npx changegen

# Generate since a specific tag
npx changegen --since v1.2.0

# Label this as v1.3.0
npx changegen --since v1.2.0 --version 1.3.0

# Terminal output only (no file write)
npx changegen --output terminal

# Write markdown to stdout (pipe-friendly)
npx changegen --output markdown --no-file > CHANGELOG.md

# Generate for a specific date range
npx changegen --since "2024-01-01" --until "2024-06-30"

# Run against a different repository
npx changegen /path/to/another/repo

# List available tags
npx changegen --list-tags

Commit Format

changegen recognizes Conventional Commits:

<type>(<scope>): <description>

[optional body]
[optional footer(s)]

Supported types

| Type | Section | |------|---------| | feat | Features | | fix | Bug Fixes | | perf | Performance Improvements | | refactor | Refactoring | | docs | Documentation | | test | Tests | | build | Build System | | ci | CI/CD | | style | Code Style | | chore | Chores | | revert | Reverts | | anything else | Other Changes |

Breaking changes

Mark breaking changes with ! after the type/scope, or include BREAKING CHANGE: in the commit footer:

feat!: redesign authentication API
feat(api)!: remove deprecated v1 endpoints

feat: new login flow

BREAKING CHANGE: session tokens are no longer compatible with v1 clients

Non-conventional repos

If your repo doesn't use conventional commits, changegen still works — all commits will appear under Other Changes. No errors, no drama.

Example output

Changelog — 1.3.0  2024-06-15
──────────────────────────────────────────────────

⚠️  Breaking Changes
  • redesign authentication API  bb7ef54  [BREAKING]

Features
  • add dark mode toggle  a1b2c3d
  • add export to PDF  e4f5g6h

Bug Fixes
  • auth: resolve token refresh race condition  i7j8k9l
  • fix crash on empty repository  m0n1o2p

Documentation
  • update API reference  q3r4s5t

  7 commits · 2 features · 2 fixes · 1 breaking

Requirements

  • Node.js >= 18
  • Git available in PATH

License

MIT