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

bumpify-cli

v1.0.4

Published

Custom npm version command with version.json in public folder and Git commit/tag

Downloads

3

Readme

🚀 Bumpify - Smarter Versioning for Your Projects

npm version License

🔥 The best way to bump your version and keep version.json in sync!

bumpify-cli extends npm version patch/minor/major with additional automation:

  • Updates package.json (like npm version)
  • Creates/updates public/version.json automatically
  • Commits & tags the changes in Git

🚀 Installation

Install bumpify-cli globally to use it in any project:

npm install -g bumpify-cli

🔧 Usage

Run bumpify just like npm version:

bumpify version patch
bumpify version minor
bumpify version major

What Happens When You Run It?

  1. The version in package.json is updated.
  2. The new version is written to public/version.json.
  3. The changes are committed (git commit -m "Bump version to X.X.X").
  4. A Git tag is created (git tag vX.X.X).

🎯 Examples

Bump a Patch Version

bumpify version patch

💡 Updates from 1.0.01.0.1

Bump a Minor Version

bumpify version minor

💡 Updates from 1.0.01.1.0

Bump a Major Version

bumpify version major

💡 Updates from 1.0.02.0.0


📌 Why Use Bumpify?

| Feature | npm version | bumpify-cli | |--------------------------------------|--------------|-----------| | Updates package.json | ✅ Yes | ✅ Yes | | Creates/updates public/version.json | ❌ No | ✅ Yes | | Commits the changes | ✅ Yes | ✅ Yes | | Creates a Git tag | ✅ Yes | ✅ Yes |


📦 Uninstall

If you ever need to remove bumpify-cli:

npm uninstall -g bumpify-cli

📄 License

MIT License © Antonio Budiselić


👥 Contributing

We welcome contributions! To contribute:

  1. Fork the repo
  2. Create a new branch (git checkout -b feature-branch)
  3. Commit your changes (git commit -m "Added feature XYZ")
  4. Push to the branch (git push origin feature-branch)
  5. Create a PR 🚀

🌟 Support & Feedback

If you found bumpify-cli helpful, please star this repo ⭐ on GitHub and share your feedback!
For issues or feature requests, open an issue here.


🚀 Happy versioning with bumpify-cli! 🚀