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

steward-bot

v0.0.4

Published

Steward: help manage your PR flow

Readme

steward

A GitHub App built with Probot that helps you manage PR flow.

Intro

If you have a fairly long build + CI process that runs on every PR, and you rerun all PRs against the latest master (e.g. you re-merge PRs onto the latest head), this bot is for you.

In these cases, every merge to master causes all PRs to rebuild, which means if you strictly merge only PRs that are green and up to date against master, you must wait build time between each merge. In a repo with high activity and large PR rate, such as a monorepo or monolithic, this quickly becomes extremely limiting and also a terrible developer experience.

Steward merges PRs for you, and attempts to build merge trains, where multiple ready PRs are merged at once optimistically. It does not merge all PRs in a merge train into a proposed branch, which is what something like bors (or bors-ng) does. Instead, Steward assumes that merge conflict of this nature happens fairly infrequently, and that you have build + CI against master that also runs.

In some sense, this is more complicated then a simple merge bot that merges when CI is green on a per PR basis, but less intelligent then a bors style bisecting merge-manager, or GitLab's merge trains (which build the combined diff set).

Features

  • A UI on /merge which enables and disables merging, e.g. in cases like production hotfixes or master breaking, so that the bot stops merging PRs.

  • Cached github responses: fast and never hits the rate limit

Development

Dev notes

Node 12, yarn, prettier.

Testing

Add tests. There is a variety of fixtures to nock and fire the events.

Next++

  • Read from a .github/config instead of hard coded labels
  • Better /merge UI
  • Allow custom predictors to better choose PRs in a train, e.g. by checking CI predicted build time left, for example.

License

MIT