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

reaper-cli

v1.0.1

Published

Multi-repository workspace manager

Readme

Reaper CLI ⚡️

A blazing-fast, multi-repository workspace orchestrator for modern engineering teams.

Reaper CLI solves the repetitive pain of managing multi-repo architectures (e.g., separate backend, frontend, and mobile repositories). Instead of context-switching between folders to run git pull, git push, or git status, Reaper allows you to control your entire workspace from a single command-line interface.

✨ Features

  • Workspace Initialization: Interactive setup wizard that automatically clones all required repositories and maps out your folder structure.
  • Git Orchestration: Run sequential or parallel pull and push operations across all your repositories with a single command.
  • Commit Shortcuts: Instantly stage and commit changes to a specific project without changing directories.
  • Status Dashboard: Get a bird's-eye view of your entire workspace with a unified Git status report (showing modified files, ahead/behind branches, and merge conflicts).
  • Graceful Fallbacks: Built-in error handling and prompt-based credential fallback for private repository cloning.

🚀 Installation

Ensure you have Node.js (v16+) and Git installed.

Install the CLI globally via npm:

npm install -g reaper-cli

(Alternatively, you can run it without installing using npx reaper-cli init)


📖 Usage Guide

Reaper operates out of a configuration file (.reaper.json) that dictates where your projects live.

1. Initialize a Workspace

To start, navigate to a new empty folder where you want your workspace to live, and run:

reaper init

The interactive wizard will ask you for a project type (e.g., Fullstack, Mobile App) and stack composition (e.g., backend + web). It will then prompt for the respective Git URLs, automatically clone them, and generate a .reaper.json file.

2. Link Custom Projects

If you have a custom setup that doesn't fit the standard templates, you can use the link command:

reaper link

This command allows you to manually specify the number of projects, their aliases, paths, and clone URLs.

3. Check Workspace Status

Get a high-level overview of all repositories in your workspace:

reaper status

Output will show the current branch, uncommitted changes, and whether you are ahead or behind the remote branch.

3. Pull All Repositories

Synchronize your entire workspace by pulling the latest changes for all projects in parallel:

reaper pull all

4. Push All Repositories

Push committed changes from all projects to their respective remotes:

reaper push all

5. Commit to a Specific Project

Stage all changes (git add .) and commit them to a specific project without needing to cd into its directory:

reaper commit <project-alias> "Your commit message here"

Example:

reaper commit web "fix: resolve login screen hydration error"

⚙️ Configuration (.reaper.json)

When you run reaper init, a .reaper.json file is created at the root of your workspace. It looks like this:

{
  "name": "my-startup-workspace",
  "projects": {
    "backend": "./backend",
    "web": "./web",
    "mobile": "./mobile"
  }
}

Note: You can manually edit this file to add or remove projects. Reaper commands will automatically resolve the paths.


🛠 Tech Stack


📄 License

MIT License. See LICENSE for more information.