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

badge-roll

v0.0.6

Published

Configurable README Badge Automator

Downloads

10

Readme

NOTE: Badge Roll has not yet reached a stable v1.0, breaking changes are likely, and most badges aren't implemented yet. Pull requests welcome, especially to increase badge coverage!

Badge Roll

Configurable README Badge Automator

Version Workflow License Coverage Badges

# badgeconfig.yml
# Here's the config for this README

badges:
  - npm/v
  - github/actions/workflow/status
  - github/license
  - codecov/c
  - badge-roll

settings:
  separator: newline
  provider: shields
  position: below-lead

about:
  branch: main
  workflow: .github/workflows/ci.yml

Setup

First, install:

npm install -D badge-roll

Second, add a script:

//package.json
"scripts":{
  "badge": "badge-roll affix"
}

Third, add a config. Here's a basic example; see below for lots more options:

//package.json
"badgeConfig": {
  "badges": ["npm/v", "github/license", "jsdelivr/npm"]
}

Fourth, run the script. Badge Roll will search for badges already in the file and replace them, so make sure you you've committed anything you don't want to lose!

> npm run badge

Voila! Your README has been badged. Read on for lots more configuration options.

Configuration

Badge Roll configurations can be stored in a badgeConfig property in package.json, as JSON in badgeconfig.json, or as YAML in badgeconfig.yaml or badgeconfig.yml. Configuration files have three sections: badges, settings, and about.

Badges

The badges section contains an array of badge configurations. For the full list of badges built in to Badge Roll, see Badges.

In the simplest case, a badge configuration can be simple a string indicating the badge's id, such as npm/v. Badge Roll gathers some basic info about your project and uses some sensible defaults to generate the badge.

For additional configuration options, the badge can be declared as an object. Only id is required; all other properties are optional.

  • id: ID of the badge
  • display: Alt text for the badge
  • to: URL that the badge should navigate to
  • variation: Particular variation of a badge to use, such as branch
  • options: A dictionary of strings, numbers, or booleans to be submitted as URL query parameters

Additionally, the style and provider settings can be overridden, and the about dictionary can be extended or modified, for specific badges. Simple (only the id string) and advanced (full object) badge declarations can be mixed freely.

Here's an example badges section:

badges:
  - npm/v
  - id: github/commits-since
    options:
      - include_prereleases: true
      - sort: semver
  - id: appveyor/build
    variation: branch
    about:
      branch: release

Settings

The settings section contains options such as badge style and provider. All settings are optional.

position

Where the badges will be inserted into the target file. Options are:

  • current: Insert badges at the location of the first badge currently in the file.
  • top: Insert badges at the very top of the file.
  • below-title: Insert badges immediately below the first h1 in the file.
  • below-intro: Insert badges below the first paragraph in the file.

provider

Badges host. Defaults to shields.

file

Path to the file to affix badges to. Defaults to README.md.

separator

String to put between badges. Defaults to space. Also available are newline and none.

style

Style of badges. Defaults to no explicit style.

About

The about section contains a dictionary of information about the project, used as variables in badge generation. The properties in the about section are unconstrained, so long as the section is a flat dictionary of strings. Badge Roll and plugins can collect some about information programmatically, but it can be declared explicitly as well.

Commands

Basic Badge Roll usage happens via command line, such as badge-roll affix.

affix

Insert badges into target file based on config.

check

Verify that badges in target file conform to config. This is recommended for use in CI pipelines, alongside similar linting and formatting checks.

load-config

Load the configuration that badge-roll sees, for debugging.

API

Badge Roll can also be called programmatically, which may be useful in contexts such as scaffolding generators.

affix

Insert badges into target file based on config. Config will be read from disk if not passed as parameter.

(source: string, config?: Config) => string

check

Verify that badges in target file conform to config. Config will be read from disk if not passed as parameter.

(source: string, config?: Config) => boolean