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

git-status-dash

v1.1.0

Published

<img width="1002" alt="Screenshot 2024-06-14 at 1 29 22 AM" src="https://github.com/ejfox/git-status-monitor/assets/530073/67b94585-f78e-4789-986b-25439b8ccce1">

Readme

Git Status Monitor

Tired of constantly jumping between terminal tabs to check the status of your git repositories? Surprised to find a repo is way behind after making a few changes? Well, jump no more! Introducing the Git Status Monitor – your one-stop shop for keeping tabs on all your git repos in real-time.

What's in the box? 📦

This nifty little tool recursively scans a directory of your choice (defaults to the current directory) and displays the git status of each repository it finds. It's like having a personal assistant for your git workflow, minus the coffee runs.

Getting Started 🏁

To get this party started, npx git-status-dash watches whatever directory it is run in.

You can also install it globally with npm install -g git-status-dash and run it from anywhere with git-status-dash.

Running from the repo

Or, if you'd like to clone the repo, first make sure you have Node.js installed on your system. Then, follow these steps:

  1. Clone this repository or download the git-status-monitor.js file.
  2. Open a terminal and navigate to the directory containing the script.
  3. Run npm install to install the required dependencies.
  4. Make the script executable with chmod +x git-status-monitor.js.
  5. Run the script with ./git-status-monitor.js.

Sit back and watch as the Git Status Monitor works its magic, displaying the status of your repositories in a slick, color-coded table.

What's it telling me? 🤔

The table displays the following information for each repository:

  • Repository name (relative to the scanned directory)
  • Status icon and details:
    • ✓ (green): The repository is in sync with the remote.
    • ↑ (yellow): The local branch is ahead of the remote by the specified number of commits.
    • ↓ (yellow): The local branch is behind the remote by the specified number of commits.
    • ✕ (red): There are uncommitted changes or the repository is not a valid git repo.

The repositories are sorted by the most recently modified ones at the top, so you can quickly see which repos need your attention.

Happy Monitoring! 😄

Now go forth and conquer your git workflow with the power of the Git Status Monitor. May your commits be clean and your branches always in sync!

If you have any questions, suggestions, PRs are welcome.