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

@matrix-rex/release-tool

v1.3.0

Published

Simplified release wizard for Node.js projects

Readme

@matrix-rex/release-tool

An interactive release wizard for Node.js projects — bump version, commit, tag, and push in one command.

npm version npm downloads license


Features

  • ✅ Checks for uncommitted changes before doing anything
  • ✅ Detects version mismatch between package.json and Git tags and lets you resolve it
  • ✅ Optional build check — run pnpm build before releasing to ensure stability
  • ✅ Bumps version — patch, minor, or major
  • ✅ Accepts a custom commit message (or uses a sensible auto-generated one)
  • ✅ Automatically commits, tags, and pushes to origin
  • ✅ Works in any Node.js project with a package.json and Git repository

Installation

Global

You can install it globally to use it in any project:

# Using pnpm (recommended)
pnpm add -g @matrix-rex/release-tool

# Using npm
npm install -g @matrix-rex/release-tool

# Using yarn
yarn global add @matrix-rex/release-tool

Run without installing

npx @matrix-rex/release-tool

Local Dev Dependency

If you want to keep the version locked to a specific project:

pnpm add -D @matrix-rex/release-tool

Then add it to your package.json scripts:

"scripts": {
  "release": "release-it"
}

Now you can run it via pnpm release.


Usage

Navigate to any Node.js project folder and run:

release-it

The wizard will guide you through:

--- Release It ---
Current Package Version: v1.2.3
Latest Git Tag:          v1.2.3

? Select release type:
  ❯ Patch (0.0.x)
    Minor (0.x.0)
    Major (x.0.0)
    Quit

? Enter commit message (leave blank for auto: 'patch release vX.X.X'):

? Run build check before releasing? (y/N)

? Ready to release patch? (Y/n)

Running build...
✔ Build successful!

Bumping version...
New Version: v1.2.4

Pushing changes and tags to origin...

✨ Release v1.2.4 successful! GitHub Actions check has started.

How It Works

  1. Checks for uncommitted changes — aborts if the working tree is dirty
  2. Reads the current version from package.json and the latest Git tag
  3. Detects mismatches — if they differ, asks which to use as the base
  4. Runs build check (Optional) — if confirmed, runs pnpm build to verify the build is stable before releasing
  5. Bumps the version via pnpm version (updates package.json + creates a Git tag)
  6. Pushes the commit and tag to origin

Local Development

Clone and link locally to test changes immediately:

git clone https://github.com/matrix-rex/release-tool.git
cd release-tool
npm link

The release-it command will now point to your local clone. Any edits to bin/release.js are reflected instantly.


Built With

| Package | Purpose | | ------------------------------------------------------ | ------------------------- | | enquirer | Interactive prompts | | picocolors | Terminal colors | | execa | Running git/pnpm commands |


License

MIT © Matrix Rex