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 🙏

© 2025 – Pkg Stats / Ryan Hefner

git-release-manager

v0.0.14

Published

A tool to generate release notes from git commit history

Readme

Git Release Manager (GRM)

A powerful CLI tool to generate release notes from git commit history and manage version releases effectively.

Node.js Version License Version

Features

  • 📝 Conventional commit-based changelog generation
  • 🏷️ Advanced version management with multiple channels (alpha, beta, preview, stable)
  • 🌿 Git branch management with flow support
  • 🔄 Project version synchronization across different file types
  • 🚀 Automated release process
  • ⚙️ Highly configurable with custom templates

Installation

npm install -g git-release-manager

Usage

Global Options

GRM supports global configuration options that can be applied to many commands:

  • --config [path]: Specify a custom configuration file.
  • --environment [env]: Set a specific environment to be used during the operations.

Version Management

# Detect current version
grm version --detect

# Update version in project
grm version --update

# Initialize the versioning
grm version --init 1.0.0

# Increment version
grm version -m   # major
grm version -i   # minor
grm version -p   # patch

# Manage channels and tags
grm version --channel beta --tag
grm version --build build-meta
grm version --compare 1.2.0
grm version --validate 2.0.0
grm version --sync
grm version --list --latest
grm version --revert 1.0.0

Changelog Generation

# Generate a changelog between specific points
grm changelog --from v1.0.0 --to v2.0.0

# Generate a changelog for a specific reference
grm changelog --point v1.0.0

# Use custom output and templates
grm changelog --output CHANGELOG.md --template path/to/custom-template.ejs

Branch Management

# Create branches
grm branch --feature my-feature
grm branch --release 2.1.0 
grm branch --hotfix 2.0.1

# Manage branches
grm branch --list
grm branch --delete my-feature
grm branch --switch develop
grm branch --merge feature/my-feature
grm branch --finish release/2.1.0
grm branch --protect develop
grm branch --unprotect develop

# Branch operations with remote
grm branch --rebase main
grm branch --sync
grm branch --push

Supported Project Types

  • Node.js (package.json)
  • .NET (.csproj)
  • Python (pyproject.toml)
  • Java (build.gradle)
  • Go (go.mod)

Configuration

GRM is highly configurable through config.json. Key configuration areas include:

Release Channels

  • dev: Development channel for testing
  • alpha: Early testing phase
  • beta: Beta testing phase
  • preview: Release candidate phase
  • stable: Production release channel

Commit Types

  • ✨ Features (feat)
  • 🐞 Bug Fixes (fix)
  • 📚 Documentation (docs)
  • 🎨 Styling (style)
  • ♻️ Refactoring (refactor)
  • 🚀 Performance (perf)
  • 🧪 Testing (test)
  • 🔄 CI/CD (ci)
  • 🔧 Chores (chore)

Note Types

  • ⚠️ Breaking Changes
  • 📉 Deprecations
  • 🆕 New Features
  • 🔄 Changes
  • 🌟 Highlights
  • 🔬 Experimental Features
  • 🐛 Known Issues

Custom Templates

You can customize the changelog output by providing your own EJS templates:

grm changelog --template path/to/custom-template.ejs

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Ahmet Soner

Repository

GitHub Repository