https://www.npmjs.com/package/@vathsavv56/gingging is a Bun-powered terminal GitHub profile explorer built with Ink, React, and TypeScript.
It runs as a local CLI command, lets you search for a GitHub username, fetches profile data from the GitHub API, and renders a styled profile card directly in your terminal.
Prerequisite: Bun must be installed on your system.
npm i -g @vathsavv56/gingOr with Bun:
bun add -g @vathsavv56/gingThen run:
ging- Interactive terminal UI built with Ink
- Live GitHub user lookup through the public GitHub users API
- Profile card showing login, name, bio, repo count, followers, following, company, and location
- Runtime-fetched GitHub Octocat mark rendered as ANSI art in the terminal
- Loading, error, and escape-to-exit states
- Local CLI command support through
ging
- Runtime: Bun
- UI: Ink + React
- Components:
@inkjs/ui - SVG rasterizing:
@resvg/resvg-js - ANSI image generation:
jimp - Language: TypeScript
.
|- index.tsx # CLI entry point
|- src/
| |- ui/
| |- App.tsx # Main terminal UI and GitHub fetch logic
|- package.json
|- README.md
|- tsconfig.json
bun installbun linkThis registers ging as a command in your local Bun environment.
gingIf the command is not found immediately, restart the shell and run ging again.
bun run devThis starts the app in watch mode while you are changing the code.
- Start the app with
ging, or usebun run devduring development. - Type a GitHub username (example:
octocat) and press Enter. - Wait for the app to fetch GitHub user data and the Octocat SVG.
- View the profile card in the terminal.
- Press
Escanytime to quit.
- GitHub unauthenticated API requests are rate-limited (typically 60 requests/hour).
- If you hit the limit, the app shows a rate-limit error.
- The avatar artwork is fetched at runtime from GitHub's asset host as SVG and converted into terminal ANSI output.
- The displayed avatar is decorative and is not the searched user's actual GitHub avatar.
gingcommand not found: Runbun linkagain, then restart your terminal session.- Avatar looks wrong or does not render: Use a terminal with ANSI truecolor support.
- GitHub user not found: Check the username spelling.
- API errors or empty results: Verify your internet connection and confirm GitHub is reachable.
- Rate limit reached: Wait for the GitHub public API limit window to reset.
bun run dev- Run app in watch modebun run start- Run the CLI entry directly once
MIT — see LICENSE for details.