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

@pollabd/gitu

v1.2.5

Published

Switch Git identity with one word. Zero setup. Pure bliss.

Readme

@pollabd/gitu

The simplest way to switch Git + GitHub identities — one word, zero config.

gitu personal   # → instantly using your personal account
gitu work       # → instantly using your work account
gitu who        # → shows who you are right now

No includeIf. No SSH config juggling. No env vars.
Just gitu <name> and you're done.

Why developers love gitu

  • One command switches name + email + SSH key
  • Perfect for personal + work + freelance + open-source accounts
  • Works everywhere: Git Bash, PowerShell, WSL, macOS, Linux
  • Zero setup after the initial gitu add

Installation

npm install -g @pollabd/gitu

One-time setup

# Personal account
gitu add personal "Sarah Connor" [email protected] ~/.ssh/id_ed25519_personal

# Work account
gitu add work "Sarah Connor" [email protected] ~/.ssh/id_ed25519_work

# Optional: default to personal in every new terminal
gitu default personal

Daily use

gitu personal          # → personal everything
gitu work              # → work everything
gitu who               # → Current: personal → [email protected]
gitu list              # → List all identities (→ = active)
gitu                   # → Quick check (same as gitu who)

Proof it works (run anytime)

gitu personal
ssh -T [email protected]
# → Hi sarahconnor! You've successfully authenticated...

gitu work
ssh -T [email protected]
# → Hi sarah-skynet! ...

git ls-remote [email protected]:sarahconnor/top-secret-project.git
# → Permission denied (publickey). ← YES, work key can't touch personal repos!

All commands

| Command | Description | | --------------------------------------------- | -------------------------- | | gitu personal / gitu work | Switch identity | | gitu who | Show current identity | | gitu list | List all identities | | gitu add <name> "<Full Name>" <email> <key> | Add or update identity | | gitu default <name> | Set default for new shells | | gitu rm <name> | Remove identity | | gitu (no args) | Same as gitu who |

Tips

  • Use short names: p, w, a, b, oss, client1
  • You can have 20+ identities, no slowdown
  • Works perfectly with GitHub CLI, VS Code, npm, etc.

Uninstall

npm uninstall -g @pollabd/gitu
rm ~/.gitu.json
git config --global --unset core.sshCommand   # optional

Made with love by @pollabd
Source & issues → https://github.com/pollabd/gitu

Never mix personal and work commits again.