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

@vd7/gitty

v0.3.2

Published

git add, commit, and push in one command from any dir, for any repo — with LFS, submodule, and health-check support

Readme

GitHub npm

ToC

About

Problem

  • agents often edit lots of repos on my machine at once
  • I often bounce across multiple repos in a singular work session:
    • adding little features here and there (mini-tasks for agent to do in background unattended)
    • remembering todos, editing READMEs, other chores
    • brilliant ideas
    • tangents
  • want frequent checkpoints because agents go rogue and overwrite important stuff- devastating if you had a brilliant idea (or agent nukes something that isn't already protected by shelllock)
  • need several mini-rollbacks/snapshots but cd-ing into each repo and then running git add / commit / push over and over is friction

Solution

  • gitty is one command: stage all → commit → force-push
  • run from any directory for any repo- pass repo root or get prompted
    • no cd
    • no && chaining
  • checkpoint repo B while in repo A
    • drop a quick save before/after an agent run- always have a rollback

Summary

  • one command: git add, git commit -m <msg>, git push -f
  • from any dir, for any repo (pass path/to/repo/root or get prompted)
  • built for agent-heavy workflows- fast checkpoints across many repos

Install

npm i -g @vd7/gitty

Usage

gitty [commit_mssg] [root_dir]

| Arg | Description | |-----|-------------| | commit_mssg | Commit message (prompted if omitted; default ..) | | root_dir | Repo root to operate on (prompted if omitted; default $PWD)- checkpoint a repo without leaving your current dir |

Examples

gitty "fix bug" /path/to/repo
gitty "checkpoint" $HOME/projects/other-repo   # save other-repo while elsewhere
gitty "wip"                                 # message only; root = $PWD
gitty                                      # prompts for both
  • uses git push -f- overwrites remote
  • use when you want a checkpoint, not shared history

Demo

  • make a change
  • run gitty with no args- answer prompts
  • watch it stage, commit, and push
# make a change
touch "$HOME/projects/example-repo/test.txt"
# run (no args -> prompts)
gitty
Enter commit message [default: ..]: added XYZ feature
Enter root directory (absolute path) [default: /Users/you/projects/example-repo]:

# output (abbreviated)
Detecting changed files..
Staging changes...
[main b309cba] added XYZ feature
 create mode 100644 test.txt
- Force pushing to remote...
To github.com:vdutts7/example-repo.git
🟢 Successfully added, committed, and pushed changes from /Users/you/projects/example-repo

Contact