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

@ggcode-cli/ggcode

v1.3.80

Published

Thin npm wrapper that installs the ggcode GitHub Release binary

Readme

@ggcode-cli/ggcode

@ggcode-cli/ggcode installs the native ggcode binary from GitHub Releases.

During package installation it downloads the matching release archive, verifies it, and places the real ggcode executable in a stable CLI location:

  • macOS / Linux: prefers /usr/local/bin, falls back to ~/.local/bin
  • Windows: prefers %USERPROFILE%\\AppData\\Local\\Programs\\ggcode\\bin, falls back to %USERPROFILE%\\.local\\bin

If that directory is not on PATH, the installer updates your shell/user PATH and asks you to reopen the terminal. The npm package keeps a separate ggcode-bootstrap helper command for manual repair, but normal usage should be the real ggcode binary.

Install

For normal CLI usage, install it globally:

npm install -g @ggcode-cli/ggcode

Then run:

ggcode

If the native install needs to be retried manually, run:

ggcode-bootstrap

What it does

  • Detects your platform and architecture
  • Downloads the latest matching ggcode binary from GitHub Releases
  • Verifies the downloaded archive with checksums.txt
  • Installs the real binary into a stable PATH location
  • Updates PATH when needed so future ggcode launches bypass the wrapper

Pin a specific ggcode release

By default, the wrapper always resolves the latest ggcode release.

If you need to pin a specific release, set GGCODE_INSTALL_VERSION:

GGCODE_INSTALL_VERSION=vX.Y.Z ggcode

or:

GGCODE_INSTALL_VERSION=X.Y.Z ggcode

TLS / Corporate proxy

The installer verifies TLS certificates by default.

If you are behind a corporate proxy with a custom CA certificate that Node.js does not trust, you have two options:

  1. Recommended — add your CA to Node's trust store:

    NODE_EXTRA_CA_CERTS=/path/to/corporate-ca.pem npm install -g @ggcode-cli/ggcode
  2. Not recommended — disable TLS verification entirely:

    GGCODE_INSECURE_TLS=1 npm install -g @ggcode-cli/ggcode

    This prints a security warning and makes the download vulnerable to man-in-the-middle attacks.

Other install methods

Homebrew (macOS / Linux)

brew tap topcheer/ggcode
brew install ggcode              # CLI
brew install ggcode-desktop      # Desktop (Linux)
brew install --cask ggcode-desktop  # Desktop (macOS DMG)

winget (Windows)

winget install --id gg.ai.ggcode-cli        # CLI
winget install --id gg.ai.ggcode-desktop    # Desktop

Native release packages

Download directly from GitHub Releases:

| Platform | Format | Install command | | --- | --- | --- | | macOS | .pkg | sudo installer -pkg ./ggcode_*_darwin_universal.pkg -target / | | Windows | .msi | msiexec /i .\ggcode_*_windows_x64.msi | | Debian / Ubuntu | .deb | sudo dpkg -i ./ggcode_*_linux_*.deb | | Fedora / RHEL | .rpm | sudo rpm -i ./ggcode-*-1.*.rpm | | Alpine | .apk | sudo apk add --allow-untrusted ./ggcode-*-r1.*.apk | | Arch Linux | .pkg.tar.zst | sudo pacman -U ./ggcode-*-1-*.pkg.tar.zst |

What is ggcode?

ggcode is a terminal-native AI coding agent — not a browser wrapper, not a VS Code extension. It runs entirely in your terminal with a polished TUI:

  • Multi-provider LLM support — OpenAI, Anthropic, Google Gemini, GitHub Copilot, DeepSeek, and more
  • Five permission modes — supervised, plan, auto, bypass, autopilot — you decide how much autonomy the agent gets
  • LSP integration — go-to-definition, references, rename, diagnostics, code actions via your language server
  • MCP tools — connect external tool servers (browser, databases, APIs) seamlessly
  • Sub-agents — spawn parallel workers for research, coding, and testing tasks
  • Harness workflows — structured engineering pipelines with git worktrees, review, and promotion
  • IM gateway — connect QQ, Telegram, Discord, Slack, DingTalk, or Feishu for remote coding
  • Bilingual UI — full English and Chinese support
  • Session persistence — resume past sessions with ggcode --resume
  • File checkpoints — undo bad edits instantly without git

Supported platforms

  • macOS
  • Linux
  • Windows

Supported architectures:

  • x86_64 / amd64
  • arm64

Project links

  • GitHub Releases: https://github.com/topcheer/ggcode/releases
  • Desktop app downloads (macOS DMG, Windows EXE): available on the same releases page
  • Discord community: https://discord.gg/F2v4mJmfG
  • Repository: https://github.com/topcheer/ggcode
  • Issues: https://github.com/topcheer/ggcode/issues