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

oss-readiness-checker

v0.3.0

Published

A small CLI that checks whether a project is ready to be shared as open source.

Readme

OSS Readiness Checker

CI npm version License: MIT

A small command-line tool that checks whether a project has the basic files people expect from an open-source repository.

It is designed for developers who are publishing an open-source project for the first time and want a simple checklist.

日本語で試す

OSS として公開したいフォルダに、基本的なファイルがそろっているかを 100 点満点で確認するツールです。インストールせずに試せます。

Windows の PowerShell:

npx.cmd oss-readiness-checker check .

macOS または Linux:

npx oss-readiness-checker check .

Node.js 20 以上が必要です。詳しい説明は、このあとの英語版をご覧ください。

Demo

OSS Readiness Checker example output

What it checks

The first version checks for:

  • README
  • LICENSE
  • CONTRIBUTING
  • SECURITY
  • A common project manifest such as package.json, pyproject.toml, Cargo.toml, or go.mod

Each item is worth 20 points.

The checker also suggests adding a Usage, Getting Started, or Quick Start section when a README does not explain how to begin. Suggestions do not affect the score or exit code.

Requirements

  • Node.js 20 or later

Usage

Run the checker against the current folder without installing it:

npx oss-readiness-checker check .

Check another project:

npx oss-readiness-checker check ../my-project

Output machine-readable JSON for CI:

npx oss-readiness-checker check . --json

Example:

OSS Readiness Checker
Project: /path/to/my-project

[PASS] README: Project documentation found.
[PASS] LICENSE: License file found.
[MISS] CONTRIBUTING: Add CONTRIBUTING.md to explain how people can help.
       Learn more: https://docs.github.com/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors
[MISS] SECURITY: Add SECURITY.md to explain how to report vulnerabilities.
       Learn more: https://docs.github.com/code-security/getting-started/adding-a-security-policy-to-your-repository
[PASS] PROJECT MANIFEST: Project manifest found.

Suggestions:
[WARN] README USAGE: Add a Usage, Getting Started, or Quick Start section so people know how to begin.
       Learn more: https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes

Score: 60 / 100

The command exits with status code 0 when all checks pass and 1 when something is missing. This makes it useful in automated workflows.

When a missing file has a relevant guide, the checker also prints a Learn more link with practical next steps.

GitHub Action

Run the checker automatically after each push and pull request by adding .github/workflows/oss-readiness.yml to your repository:

name: OSS Readiness

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

permissions:
  contents: read

jobs:
  check:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v6
      - uses: plainloop-jp/[email protected]

By default, the action checks the repository root. Use the optional path input when the project is inside a subdirectory.

Development

Run the local source code:

node ./src/cli.js check .

Run the tests:

npm test

Run the checker against this repository:

npm run check

Roadmap

  • Add more checks for README content quality
  • Suggest fixes for missing files
  • Add configurable rules

Contributing

Contributions are welcome. See CONTRIBUTING.md.

Security

For security reports, see SECURITY.md.

License

MIT