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 🙏

© 2024 – Pkg Stats / Ryan Hefner

dependency-version-badge

v1.11.0

Published

A little script to update README file with dependency version badge

Downloads

6,985

Readme

dependency-version-badge demo CI CI

A little script to update README file with dependency version badge

Badge examples prettier version debug version

Example badge (in this readme) for dev dependency prettier (showing incorrect version 4.0.1)

![prettier version](https://img.shields.io/badge/prettier-4.0.1-brightgreen)

Can be updated by installing this module and running:

$ npm i -D dependency-version-badge
$ npx update-badge prettier
saving updated readme with [email protected]
# alternative without dev dependency
$ npx -p dependency-version-badge update-badge prettier

The README is updated to

![prettier version](https://img.shields.io/badge/prettier-2.0.5-brightgreen)

Good use: run this tool on push to master branch using GitHub Action, then push updated code (if any) back to the repository. See .github/workflows/demo.yml.

You can pass multiple names at once

npx update-badge prettier debug ...

If a badge is not found, a new badge will be inserted on the first line of the README file. If the version contains special characters like ~ or ^, they will be removed. If the version is *, then this tool will fail and exit with non-zero exit code.

Examples

cypress-svelte-unit-test, cy-rollup

Versions in remote repositories

You can look up dependency versions in package.json files in remote repositories

npx update-badge dependency-version-badge --from https://github.com/bahmutov/cypress-svelte-unit-test

Will update the badge below

![dependency-version-badge used in cypress-svelte-unit-test version](... badge url ...)

For GitHub urls, you can simply use --from <organization name>/<repo name> like this

npx update-badge dependency-version-badge --from bahmutov/cypress-svelte-unit-test

You can pass a single dependency name and multiple --from parameters

npx update-badge X --from bahmutov/repo1 --from bahmutov/repo2 --from bahmutov/repo3

You can shorten multiple --from parameters using commas without spaces

npx update-badge X --from bahmutov/repo1,bahmutov/repo2,bahmutov/repo3

You can use custom file instead README.md using --file parameter

npx update-badge --file ./folder1/folder2/info.md

Examples table

Badge | Example repo --- | --- dependency-version-badge used in cypress-svelte-unit-test version | cypress-svelte-unit-test dependency-version-badge used in cy-rollup version | cy-rollup

Tip: you can set a GitHub workflow to run using a schedule to update those badges periodically. For example, to update the badges every night:

on:
  schedule:
    # update badges every night
    # because we have a few badges that are linked
    # to the external repositories
    - cron: '0 3 * * *'

See example in cypress-react-unit-test

Short badge

You can update a "short" badge where only the version of the dependency is listed. Use --short flag:

npx update-badge dependency-version-badge --short --from bahmutov/cy-rollup

The badge is below

dependency-version-badge used in cy-rollup short

Behind the latest version

By default every badge is bright green. But you can look up the latest version of the dependency and color code the badge depending on how far the current version is behind the latest version. If the current version is the latest, or a couple of minor versions behind, the badge is green. If the current version is more than a couple of minor releases behind, but is still on the same major version, the badge is yellow. If the current version is 1 or more major versions behind, the badge is red.

Latest version | Current version | Badge --- | --- | --- 2.3.0 | 2.2.0 | up-to-date badge 2.3.0 | 2.0.0 | a few minor versions behind badge 2.3.0 | 1.19.12 | major version behind badge

To get a color-coded badge, use CLI flag --behind

Example color-coded badges for ava and execa dependencies are below

$ npm run demo:behind

Dependency Badge | Short badge --- | --- ava version | ava short execa version | execa short

Debugging

Run with environment variable DEBUG=dependency-version-badge to see verbose logs

License

MIT license