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

package-quality

v0.3.2

Published

Estimate the quality of a package.

Downloads

12

Readme

Package quality Build Status

Package quality

package-quality

Measurements of quality for packages, initially for npm.

Add Your Badge

To show the quality of your npm package, just add one of these images to your GitHub README:

[![Package quality](https://packagequality.com/shield/yourpackage.svg)](https://packagequality.com/#?package=yourpackage)
[![Package quality](https://packagequality.com/badge/yourpackage.png)](https://packagequality.com/#?package=yourpackage)

Or, in HTML markup:

<a href="https://packagequality.com/#?package=yourpackage"><img src="https://packagequality.com/badge/yourpackage.png"/></a>
<a href="https://packagequality.com/#?package=yourpackage"><img src="https://packagequality.com/shield/yourpackage.svg"/></a>

replacing yourpackage with (surprise!) the name of your package. You can choose between badge or mini-badge; the latter is courtesy of shields.io.

Measuring Quality

Any objective measurements of quality are going to be flawed one way or another. package-quality only attempts to give some indications about quality, not be an absolute rating on which to bet your farm. If you don't agree with our ratings, please help us improve them!

Algorithm

The following factors are considered when calculating the quality of a package:

  • Versions quality (v): the more versions a package has, the more quality it is. We calculate v as v=1-1/total_number_of_versions
  • Downloads quality (d): the more downloads a package has, the more quality is it. We calculate d as d=1-1/number_of_downloads_last_year
  • Repo quality (r): if the package has no repo, the value of r is zero. Right now (there is an issue open to fix this), if the package does not have repo on Github, it's given r=0. For those packages with a repo on Github, r is calculated considering these three factors:
    • Total factor (rt), calculated as rt=1-1/total_number_of_issues
    • Open factor (ro): we consider "healthy" to have a 20% of open issues in your repo (20% of the total number of issues). Those packages with 20% or less open issues will have ro=1. For those with more than 20%, ro=1.2-open_issues/total_number_of_issues
    • Long open factor (rlo): we consider long open issues those who have been open more that 1 year and are still open today. This factor is calculated as rlo=1-long_open_issues/total_number_of_issues. If a package has no open issues, then rlo=1.

The repo quality r is calculated as the average of rt, ro and rlo: r=(rt+ro+rlo)/3.

The overall quality of a package is q=v*d*r.

How to Understand Star Ratings

By xkcd

Just joking. New packages will always appear with low stars, until they get enough momentum. Also, packages that "just work" and get no issues will be underrated by our system.

Other Package Managers

Right now the quality is computed only for npm packages. But it is trivial to extend the ratings to other package managers, since there are only external measurements from GitHub and npm: we don't even look at the code.

If you want to extend package-quality to a new package manager, you just need:

  • a complete list of packages,
  • and some way to get the downloads per year.

Let us know and we will set up a new subdomain.

Help Wanted

The following areas are a work in progress:

  • Improve the existing ratings.
  • Take other parameters into account, such as a working or broken Travis-CI build.
  • Extend to other package managers (see above).
  • Just let us know what you don't like about our project.

Just send mail or, even better, a pull request.

License (The MIT License)

Copyright (c) 2014-2015 Alex Fernández [email protected], Diego Lafuente, Sergio García Mondaray [email protected] and contributors.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.