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

github-stars-contributions

v3.0.4

Published

Log your GitHub Stars Contributions with the ease of a command line CLI

Downloads

31

Readme

Log your GitHub Stars Contributions from the command line.

DOWNLOADS Learn Node.js CLI Automation Follow @_ahmadawais on X

CLI: github-stars-contributions gsc

👨‍🏫 Awais taught and created this CLI project in his NodeCLI.com automation course

  • 📦 Add a contribution of any type
  • 🗃️ Remove a contribution in case of a mistake
  • 🤯 Autocomplete search with type and filter function
  • 🤯 Adding YouTube? gsc CLI can fetch title, date, and description for you
  • 👨‍🏫 Awais taught and created this CLI project in his NodeCLI.com automation course

📟

Install

# Recommended.
npx github-stars-contributions

# OR an alternative global install.
npm install -g github-stars-contributions
gsc # run global alias

⚙️

Usage

The CLI supports both interactive (default) and non-interactive modes for automation.

Add Contributions

💬 Interactive Mode (Default)

Run gsc add and answer the prompts:

ADD

gsc add
# OR
gsc a

You'll be asked:

  • Contribution Type
  • URL (optional)
  • Title
  • Description
  • Date

🤖 Non-Interactive Mode (Automation)

Perfect for CI/CD pipelines and scripts:

gsc add \
  -t BLOGPOST \
  -T "My Blog Post" \
  -D "Description here" \
  -d 2025-11-22 \
  -u https://example.com \
  -x

Remove Contributions

💬 Interactive Mode (Default)

Search and select contributions to remove:

Remove gif

gsc remove
# OR
gsc r

Search for the contribution, select it, and press enter to remove. Easy peasy!

🤖 Non-Interactive Mode (Automation)

Remove by contribution ID:

gsc remove -i <contribution-id> -x

⚙️

Command Reference

help gif

Basic Syntax

github-stars-contributions <command> [options]
# OR
gsc <command> [options]

Global Options

| Option | Description | |--------|-------------| | -v, --version | Output the version number | | -h, --help | Display help for command |

Commands

| Command | Alias | Description | |---------|-------|-------------| | add [options] | a | Add a new contribution (interactive by default) | | remove [options] | r | Remove a contribution (interactive by default) | | help [command] | - | Display help for command |


add Command

Add a new contribution to your GitHub Stars profile.

Usage:

gsc add [options]
gsc a [options]

Options:

| Option | Description | Required | |--------|-------------|----------| | -t, --type <type> | Contribution type (see types below) | Yes (non-interactive) | | -T, --title <title> | Contribution title | Yes (non-interactive) | | -D, --description <description> | Contribution description | Yes (non-interactive) | | -d, --date <date> | Date in YYYY-MM-DD format (default: today) | Yes (non-interactive) | | -u, --url <url> | Contribution URL | No | | -x, --no-interactive | Disable interactive mode | No | | -h, --help | Display help | No |

Contribution Types:

  • OTHER
  • FORUM
  • SPEAKING
  • BLOGPOST
  • HACKATHON
  • VIDEO_PODCAST
  • ARTICLE_PUBLICATION
  • EVENT_ORGANIZATION
  • OPEN_SOURCE_PROJECT

Examples:

# Interactive mode (default)
gsc add

# Non-interactive mode with all options
gsc add \
  -t BLOGPOST \
  -T "My Blog Post" \
  -D "Description here" \
  -d 2025-11-22 \
  -u https://example.com \
  -x

# Non-interactive without URL
gsc add -t SPEAKING -T "Conference Talk" -D "Talked about Node.js" -d 2025-11-20 -x

remove Command

Remove a contribution from your GitHub Stars profile.

Usage:

gsc remove [options]
gsc r [options]

Options:

| Option | Description | Required | |--------|-------------|----------| | -i, --id <id> | Contribution ID to remove | Yes (non-interactive) | | -x, --no-interactive | Disable interactive mode | No | | -h, --help | Display help | No |

Examples:

# Interactive mode (default) - search and select
gsc remove

# Non-interactive mode with ID
gsc remove -i abc123 -x

📝

Changelog

❯ Read the changelog here →

KEY: 📦 NEW, 👌 IMPROVE, 🐛 FIX, 📖 DOC, 🚀 RELEASE, and 🤖 TEST

I use Emoji-log, you should try it and simplify your git commits.

📃

License & Conduct

🙌

Connect