Skip to main content
Home

View table of contents

Badges

JSR provides badges for each package that can be used to showcase its latest version or its JSR score.

Version Badge

The version badge can be used to showcase the version of a package. It is available at the following URL:

https://jsr.io/badges/@<scope>/<package>

Here’s how it looks:

JSR

To include it in a Markdown document, use the following code, replacing <scope> and <package> with the actual scope and name of the package.

[![JSR](https://jsr.io/badges/@<scope>/<package>)](https://jsr.io/@<scope>/<package>)

In HTML documents, the following can be used:

<a href="https://jsr.io/@<scope>/<package>">
  <img src="https://jsr.io/badges/@<scope>/<package>" alt="" />
</a>

JSR Score Badge

The JSR score badge can be used to showcase the JSR score of a package. It is available at the following URL:

https://jsr.io/badges/@<scope>/<package>/score

Here’s how it looks:

JSR Score

To include it in a Markdown document, use the following code, replacing <scope> and <package> with the actual scope and name of the package.

[![JSR Score](https://jsr.io/badges/@<scope>/<package>/score)](https://jsr.io/@<scope>/<package>)

In HTML documents, the following can be used:

<a href="https://jsr.io/@<scope>/<package>">
  <img src="https://jsr.io/badges/@<scope>/<package>/score" alt="" />
</a>

Scope Badge

The scope badge can be used to showcase the package list of a scope. It is available at the following URL:

https://jsr.io/badges/@<scope>

Here’s how it looks:

JSR Scope

To include it in a Markdown document, use the following code, replacing <scope> with the actual scope.

[![JSR Scope](https://jsr.io/badges/@<scope>)](https://jsr.io/@<scope>)
<a href="https://jsr.io/@<scope>">
  <img src="https://jsr.io/badges/@<scope>" alt="" />
</a>

Custom Badge Styling

These badges can be customized by adding query parameters to the URL, for example:

https://jsr.io/badges/@<scope>/<package>?color=blue&labelColor=121212&logoColor=red

Here’s how it looks:

JSR Scope

The supported style-related query parameters can be found in the Shields.io documentation.

Note: logoSize, logo, url and cacheSeconds are not supported and if provided, they will be ignored.

Edit this page on GitHub