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-tork

v1.1.0

Published

A keyboard-first Git client for your terminal, with mouse support. Built with React and Ink.

Readme

git-tork

A keyboard-first Git client for your terminal — with mouse support.

npm version license node

Website · Report a Bug · npm


git-tork screenshot

Why git-tork?

Staging, committing, branching, and reading diffs shouldn't require leaving your terminal — or memorizing twenty git flags. git-tork gives you a fast, focused TUI:

  • Zero install — run it with npx
  • Keyboard-first — every action is a keystroke away
  • Mouse support — click panes, rows, and sections when you feel like it
  • Runs anywhere — any terminal with a Node.js ≥ 18 runtime

Quick Start

# Run instantly
npx git-tork

# Or install globally
npm install -g git-tork
git-tork

# Point it at any repo
git-tork /path/to/repo

Features

  • Commit graph — colorized git log --graph across all branches, scrollable
  • Changes view — stage/unstage files, write commit messages, amend the last commit
  • Diff viewer — per-file diffs with syntax-highlighted + / - / @@ lines
  • Branch management — checkout, create branches, browse remotes from the sidebar
  • Push & pull — one keypress, with live status feedback in the header
  • Mouse support — click to focus panes and select list rows
  • Alternate screen buffer — your terminal scrollback stays clean

Keybindings

Global

| Key | Action | | --- | --- | | / | Navigate lists | | / | Move focus between panes (Sidebar ↔ Commits, or Sidebar ↔ Status ↔ Diff) | | p | Push | | l | Pull | | q / Ctrl+C | Quit |

Sidebar

| Key | Action | | --- | --- | | Enter | Checkout branch / open view / toggle section | | Space | Collapse or expand a section | | r | Refresh branches and remotes | | Enter on + New Branch | Create a new branch |

Changes View

| Key | Action | | --- | --- | | s | Stage highlighted file | | u | Unstage highlighted file | | c | Focus the commit message input | | a | Toggle amend (pre-fills last commit message) | | Enter | Show diff for highlighted file / submit commit | | Esc | Cancel text input |

Development

git clone https://github.com/sijintv/git-tork.git
cd git-tork
npm install
npm run dev        # run from source with tsx
npm run build      # compile to dist/

Built with React, Ink, and simple-git.

Contributing

Issues and PRs are welcome. If you hit a bug, please include your terminal emulator, OS, and Node version.

License

MIT © Sijin T V