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 🙏

© 2025 – Pkg Stats / Ryan Hefner

orwell-cli

v0.7.4

Published

orwell cli - chromium format owners parser

Downloads

9

Readme

Build Status

Install

npm -g install orwell-cli

to add shell autocompletions (follow instructions):

orwell --rarg-suggestions-script

Owners

owners [CMD] is printing a human-readable list of owners in the terminal. You can use --copy (or -c) to copy the output in Markdown format that you can paste in PRs.

For more up-to-date information use --help

orwell owners --help

Sample use

To view changed files owners of the current branch, compared to origin/master:

orwell owners changed --copy

To view changed files owners between 2 branches/commits (useful when checking remote PR chains):

orwell owners changed origin/base-branch origin/checked-branch

You can pipe a list of files to be checked with orwell owners files:

find . -path node_modules -prune -o -type f -name '*.jpg' | orwell owners files

Git

git [CMD] is are helpful git aliases for diffs, that exclude .xlf files.

For example to copy a diff for pasting as a GitHub comment:

orwell git diff --filter M --copy

Or to see the impacted files

orwell git diff --display status

It supports the same format for base-branch checked-branch as orwell owners changed, for example:

orwell git diff origin/base-branch origin/checked-branch --display status

Info

There is a short summary of how the lexing and parsing works in src/owners/README.md