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

@jeffsawyer/repo-ready

v0.3.2

Published

Zero-friction release automation setup for JS/TS repos — release-it, changelog, commitlint, lefthook, GitHub Actions, and Slack notifications in one command.

Readme

repo-ready

Zero-friction release automation setup for JS/TS repos. One command wires up release-it, conventional changelog, commitlint, lefthook, GitHub Actions, Slack notifications, and more.

Usage

npx @jeffsawyer/repo-ready

Or install globally:

npm install -g @jeffsawyer/repo-ready
repo-ready

What it sets up

Always:

  • release-it + @release-it/conventional-changelog for automated versioning and changelog
  • .release-it.json with opinionated defaults (conventional commits, GitHub releases, no npm publish)
  • .github/workflows/release.yml — reusable release workflow (callable via workflow_call or manually via workflow_dispatch)
  • .github/workflows/deploy-and-release.yml — example caller workflow, wired to your production branch
  • .github/workflows/pr-title.yml — enforces conventional commit format on PR titles
  • .github/pull_request_template.md
  • CONTRIBUTING.md with commit conventions, release process, and PR guidelines
  • CHANGELOG.md (if missing)

Optional:

  • commitlint + lefthook + prettier + eslint for local commit and code quality enforcement
    • Auto-appends issue ID from branch name — supports Jira, Linear, GitHub Issues, or a custom pattern
    • Prettier and ESLint run automatically on staged files
  • Slack release notification via slackapi/slack-github-action

Philosophy

This tool is built around a squash-merge workflow:

  1. Every PR is squash-merged into your production branch
  2. The PR title becomes the commit message — so it must follow conventional commits
  3. release-it reads those commits to determine version bumps and generate the changelog
  4. The release workflow fires automatically on every push to your production branch

This means your changelog writes itself, versions are always correct, and your team only needs to follow one rule: write a good PR title.

Supported package managers

npm, yarn, pnpm, and bun are all detected automatically from your lockfile.

Requirements

  • Node.js 18+
  • A package.json in the current directory (or let repo-ready create one)
  • Git initialized

GitHub Secrets

| Secret | Required | Description | |-----------------------------|------------------|----------------------------------| | GITHUB_TOKEN | Always | Auto-provided by GitHub Actions | | SLACK_RELEASE_WEBHOOK_URL | If Slack enabled | Slack Incoming Webhook URL |

Local development

git clone https://github.com/jeffsawyer/repo-ready
cd repo-ready
yarn install
yarn dev

License

MIT