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

automate-release

v2.1.9

Published

No more manual work in your software releases.

Readme

automate-release configures your project so that every commit pushed to the main branch triggers a new release automatically. No human factor is involved.

When you create a new project, the first thing you should do is:

npx automate-release

If you use direnv with a .envrc file, you can also sync your local tokens to GitHub Secrets automatically:

GH_TOKEN=xxx npx automate-release --tokens

This single command bootstraps your repository with the best practices for software releasing:

https://github.com/user-attachments/assets/be26eb77-2ffd-46d1-9414-3ed063ece8fc

Releasing software is a fundamental part of our developer life, but we often do it manually, which is a source of errors and takes time away from what we love: coding.

automate-release brings you:

Follow a git commit convention

Using a convention for git messages ensures that all contributors produce a homogeneous history. But it's not just about aesthetics; it's about programmable history.

By following a pattern, we can automatically classify commits in a CHANGELOG.md and determine the next version to release (patch, feature, or breaking change).

automate-release sets up commitlint for that purpose:

You won't be able to commit unless the format is valid. It follows the conventional commits specification, which quickly becomes the backbone of your automation.

History-driven releases

As every commit pushed to the main branch will trigger a release, the next version is automatically determined based on your git history following semver rules:

  • patch (1.0.01.0.1): When you commit a fix.
  • minor (1.0.01.1.0): When you commit a feat.
  • major (1.0.02.0.0): When you commit a BREAKING CHANGE.

This automated process handles the tedious work of incrementing the version in package.json, generating the CHANGELOG.md entry, and creating the release commit and tag.

Seamless GitHub integration

The human factor in a release should be limited to being the trigger: just push your code. Everything else should be automated.

automate-release deploys GitHub Actions that handle the entire workflow automatically:

  • Reliability: Tests are executed on every push to ensure stability before any release.
  • Automation: Contributors list is automatically updated and pushed back to the repository.
  • Transparency: Your CHANGELOG.md is synchronized with your GitHub Releases.
  • Distribution: The package is automatically published to the NPM registry once the release is tagged.

A release is a commitment to your audience. automate-release ensures your users stay informed by reflecting your changes directly into the GitHub Release section, making your project look professional and transparent.