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

@sunnygg/crgc

v0.1.5

Published

Interactive project .gitconfig generator for common Git settings.

Downloads

352

Readme

Demo

demo

Install

npx @sunnygg/crgc

How It Works

The CLI opens with the project gitconfigs tracked from your home ~/.gitconfig. You can create a new project gitconfig, update global settings, or select an existing project gitconfig to edit, move, or delete.

Created gitconfigs are stored in your home directory with a postfix based on the final project directory name:

/foo/bar/baz/bat -> ~/.gitconfig.bat

If that filename is already taken, the CLI appends a number, such as .gitconfig.bat_1 or .gitconfig.bat_2.

The top-level ~/.gitconfig tracks each project gitconfig with includeIf:

[includeIf "gitdir:~/Projects/company_a/"]
  path = .gitconfig.company_a
[includeIf "gitdir:~/Projects/subdir/company_b/"]
  path = .gitconfig.company_b

If a tracked project directory moves or gets renamed, select its project gitconfig and choose Update location. The CLI rewrites the includeIf directory condition in ~/.gitconfig while keeping the same managed gitconfig file and settings.

Global settings use the same selectable menu of Git settings as project gitconfigs. Choose Update global settings to write shared settings directly to the root ~/.gitconfig; new settings are merged with existing global settings and managed includeIf entries.

When editing any gitconfig, the CLI explains each setting before writing it. Existing settings are detected with git config --file; when a key already exists, the CLI asks before replacing it.

Options

  • User identity: user.name, user.email
  • Default branch: init.defaultBranch
  • Pull strategy: pull.rebase
  • Push upstream setup: push.autoSetupRemote
  • Fetch pruning: fetch.prune
  • Reuse conflict resolutions: rerere.enabled
  • Line endings: core.autocrlf, core.eol
  • Conflict markers: merge.conflictStyle
  • Commit signing: commit.gpgSign, user.signingKey, gpg.format
  • Common aliases: alias.st, alias.co, alias.br, alias.ci, alias.lg

Development

This project uses pnpm and configures minimumReleaseAge: 10080 in pnpm-workspace.yaml, which requires package versions to be at least seven days old before installation.

pnpm install
pnpm test
pnpm build

Git config behavior follows the official Git documentation for git config: https://git-scm.com/docs/git-config.

Roadmap

  • Viewing the gitconfig while editing
  • Better UI overall