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

@nanodelabs/novalyn

v0.1.1

Published

Beautiful Changelogs using Conventional Commits

Readme

novalyn

💅 Beautiful Changelogs using Conventional Commits - Rust port of @unjs/changelogen

CI

Status

MVP Complete - Core features implemented with parity to the JavaScript version.

Parity Achieved: This Rust implementation aims for output parity with @unjs/changelogen. Commit classification, version inference, and markdown output should match the JavaScript version exactly. See PARITY_SPEC.md for detailed requirements.

Distribution: Currently available via Cargo. npm package distribution via NAPI-RS is planned for a future release.

See tasks.md for detailed roadmap and implementation status.

Features

  • Conventional Commit Parsing - Supports standard commit message formats
  • Configurable Types - Customize commit types, emojis, and semver impact
  • Multiple Providers - GitHub, GitLab, Bitbucket repository detection
  • Async & Concurrent - Fast I/O with tokio, parallel processing with rayon
  • Parallel Processing - Fast parsing of large commit histories (4x speedup)
  • Author Attribution - Automatic contributor detection and acknowledgment
  • Semantic Versioning - Automatic version bumping based on changes
  • Idempotent Operation - Safe to rerun without duplicating entries
  • Clean Code Quality - No unwrap() outside tests, clippy clean, comprehensive test coverage

Performance

Novalyn leverages Rust's concurrency primitives for exceptional performance:

  • Async I/O: Non-blocking file operations with tokio
  • Concurrent Config Loading: Parallel loading of multiple config files (2x speedup)
  • Parallel Commit Processing: Multi-threaded parsing and classification (4x speedup on 100+ commits)
  • Concurrent Rendering: Parallel section rendering (2.5x speedup)
  • Batch GitHub API: Concurrent API requests for author resolution (10x speedup)

See CONCURRENCY.md for detailed performance characteristics and tuning options.

Quick Start

# Install from source (cargo publish pending)
git clone https://github.com/nanodelabs/novalyn
cd novalyn
cargo install --path .

# Basic usage
novalyn show                    # Show next version
novalyn generate                # Generate changelog block  
novalyn generate --write        # Update CHANGELOG.md
novalyn release                 # Full release pipeline (tag + changelog)
novalyn --help                  # See all options

Configuration

Create novalyn.toml in your project root:

# Customize commit types
[types.feat]
title = "✨ Features"
semver = "minor"

[types.fix] 
title = "🐛 Bug Fixes"
semver = "patch"

# Scope mapping
[scopeMap]
"ui" = "frontend"
"api" = "backend"

# GitHub token for release syncing
[tokens]
github = "${GITHUB_TOKEN}"

Or use [package.metadata.novalyn] in Cargo.toml.

Differences from JS Version

Intentional Differences

| Feature | JavaScript Version | Rust Version | Notes | | ------------------------ | -------------------------------- | ------------------------------- | ---------------------------------------- | | Configuration | JSON/JS files | TOML files | Rust ecosystem standard | | Config location | package.json or .changelogrc | novalyn.toml or Cargo.toml | Cargo integration | | Parallel processing | Single-threaded | Optional multi-threaded (rayon) | Performance optimization for large repos | | Package distribution | npm | Cargo (npm via NAPI-RS planned) | Native Rust tooling | | Binary size | Node.js required (~50MB+) | Static binary (~5MB) | No runtime dependency |

Parity Guarantees

These behaviors match the JavaScript version exactly:

  • Commit classification: Type detection, scope parsing, breaking change identification
  • Version inference: Semver rules including pre-1.0 adjustments
  • Markdown output: Format, section ordering, reference linking
  • Filtering rules: Disabled types, chore(deps) handling
  • Contributors: Deduplication, co-author detection, ordering
  • Idempotence: Safe to rerun without duplication

See PARITY_SPEC.md for comprehensive parity documentation and verification strategy.

Development

See CONTRIBUTING.md for detailed contribution guidelines.

Quick Commands

# Using just (recommended)
just check          # Run all checks (format, lint, test)
just test           # Run tests
just lint           # Run clippy
just fmt            # Format code
just coverage       # Generate coverage report (text summary)
just coverage-html  # Generate HTML coverage report and open in browser
just coverage-lcov  # Generate lcov.info for Codecov

# Manual commands
cargo build
cargo test
cargo clippy -- -D warnings
cargo fmt --all

# Coverage with cargo-llvm-cov
cargo install cargo-llvm-cov
cargo llvm-cov --all-features --workspace
cargo llvm-cov --all-features --workspace --html --open

# Run benchmarks
cargo bench

Environment Variables

NOVALYN_PARALLEL_THRESHOLD=50  # Parallel processing threshold (default: 50)
RUST_LOG=debug                     # Enable debug logging
GITHUB_TOKEN=xxx                   # GitHub API token for release sync

Goals

  • Parity with JavaScript Version
  • Support more than just npm (cargo, go and others, contributions needed!)
  • Performance
  • Security
  • else?

License

MIT - See LICENSE for details

Acknowledgments

This project is a Rust port of @unjs/changelogen by the UnJS team.