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

@usetill/cli

v0.1.0

Published

Stacked-diff CLI — create, manage, and land stacked pull requests on GitHub

Readme

@usetill/till

Stacked-diff CLI — create, manage, and land stacked pull requests on GitHub.

Installation

npm install -g @usetill/till
# or
pnpm add -g @usetill/till

Requires Node.js 20+.

Quick Start

tl auth login   # OAuth with GitHub
tl init         # initialize till in a repo
tl create feat  # create a new branch on top of the current one
tl submit       # push and open/update PRs for the stack
tl land         # merge the current PR and restack descendants

Commands

Navigate

tl up        # move to the child branch
tl down      # move to the parent branch
tl top       # move to the top of the stack
tl bottom    # move to the bottom of the stack
tl trunk     # move to trunk (main/master)
tl checkout  # interactively pick a branch

Inspect

tl log     # show the current stack as a tree
tl ls      # list all tracked branches
tl info    # show metadata for the current branch
tl pr      # open the PR for the current branch in a browser

Manage

tl create    # create a new branch stacked on the current one
tl track     # start tracking an existing branch
tl untrack   # stop tracking a branch
tl rename    # rename the current branch
tl delete    # delete the current branch
tl move      # move the current branch to a different parent
tl reorder   # reorder branches in the stack

Rework

tl modify   # amend the current commit
tl squash   # squash commits on the current branch
tl fold     # fold the current branch into its parent
tl absorb   # absorb staged changes into the relevant commit
tl split    # split a commit across branches

Restack

tl restack   # rebase the current branch (and descendants) onto its parent
tl continue  # continue after resolving a conflict
tl abort     # abort an in-progress restack
tl undo      # undo the last till command

GitHub

tl submit  # create or update PRs for the stack
tl sync    # pull latest PR state from GitHub
tl land    # merge the current PR and clean up
tl get     # fetch a PR's branch locally

Authentication

till uses a GitHub App for PR management. After installing, run:

tl auth login

This opens a browser OAuth flow. Your token is stored locally.

Core Concepts

  • Trunk — your integration branch (main, master, etc.)
  • Stack — an ordered list of branches where each is based on the previous
  • Parent — the branch a given branch is stacked on top of
  • Submit — push a branch and open or update its PR on GitHub
  • Land — merge a PR and restack everything above it automatically

License

O'Saasy License Agreement. See LICENSE.md.