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

git-full-setup

v1.0.0

Published

This is a simple tool that sets up Git perfectly, VS Code integration, useful aliases, and best practices on your computer in one go.

Readme

Git Full Setup

This is a simple tool that sets up Git perfectly on your computer in one go.

What does it do?

  • Asks for your name and email
  • Sets up SSH key for GitHub (creates new one if you don't have)
  • Shows you the public key → tells you exactly where to paste it on GitHub
  • Tests the SSH connection
  • Sets many useful Git settings (aliases, VS Code editor, safe CRLF, etc.)
  • Creates a good global .gitignore file
  • Shows you everything it did at the end

Requirements (install these first)

  1. Node.js + npm → download from https://nodejs.org (use LTS version)
  2. Git → download from https://git-scm.com/downloads
  3. Visual Studio Code (recommended, but not required)
  4. A GitHub account

How to install

Open your terminal / Git Bash and run this one command:

npm install -g git-full-setup

How to use

Just type this command and press Enter:

git-setup

Then follow the instructions on the screen.

Step-by-step what happens when you run it

  1. It asks for your full name and email
  2. It checks if you already have SSH key
  3. If you have → shows the key, tells you to add it to GitHub
  4. If you don't → creates a new secure key (ed25519)
  5. It starts SSH agent, adds your key
  6. Tests connection to GitHub
  7. Sets all Git global settings
  8. Creates ~/.gitignore_global
  9. Shows you the full list of your new settings
  10. Tells you "Success!"

After setup, test it

git clone [email protected]:Olorunshogo/git-full-setup.git
cd git-full-setup

If it clones without asking for password → success!

Common problems & fixes

  • "Permission denied (publickey)": You forgot to add the key to GitHub or didn't save it
  • SSH test fails: Run ssh -v [email protected] to see details
  • On Windows: Always use "Git Bash" (not Command Prompt or PowerShell)
  • VS Code not opening: Make sure VS Code is installed and in your PATH

Uninstall

npm uninstall -g git-full-setup

npm access token