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

gitjet

v1.0.2

Published

A cutting-edge CLI tool for streamlined Git and GitHub workflows with interactive UI options for developers

Readme

GitJet CLI

GitJet is a modern and stylish CLI tool designed to simplify Git and GitHub workflows. Whether you're a beginner or an advanced user, GitJet streamlines the most common Git operations in a beautiful CLI with a seamless interactive UI. It offers both command-based and menu-driven options, giving you full flexibility.


Features

  • Quick Commit: Add, commit, and push all changes with one command.
  • Start Journey: A beginner-friendly interactive guide to Git.
  • Start Repo: Initialize and set up a new Git repository.
  • Pull Requests: Create, list, and merge pull requests effortlessly.
  • Interactive Mode: Enter an interactive menu to perform Git operations by simply typing and selecting options, no commands required.
  • Visual Feedback: Get feedback with beautiful, styled output for better user experience.

Installation

Install GitJet globally via npm:

npm install -g gitjet

Usage

Once installed, GitJet can be used through commands or by simply typing gitjet to enter interactive mode.

1. Enter Interactive Mode (Default)

If you simply type gitjet without any additional commands, the tool will start in an interactive mode where you can select actions from a menu instead of typing commands manually.

gitjet

2. Start Journey (Perfect for Beginners)

Start your Git journey with an interactive guide.

gitjet journey

3. Quick Commit

Add, commit, and push all changes with a single command. You can optionally add a commit message using the -m flag.

gitjet quickcommit -m "Your commit message"

4. Start Repo

Initialize a new repository in the current directory.

gitjet start

5. Manage Pull Requests

Create, list, or merge pull requests.

  • Create a PR:
gitjet pr --create
  • List PRs:
gitjet pr --list
  • Merge a PR:
gitjet pr --merge <pr_number>

Example Workflow

Here is an example of a typical workflow with GitJet:

  1. Start your Git journey if you're new to Git:

    gitjet journey
  2. Make changes to your repository.

  3. Commit and push changes with:

    gitjet quickcommit -m "Fixed issue #123"
  4. Create a pull request with:

    gitjet pr --create
  5. Manage other pull requests with:

    gitjet pr --list
    gitjet pr --merge 1

Contributing

GitJet is open-source, and contributions are welcome! If you'd like to contribute, feel free to fork the repository and submit a pull request. Please follow the standard Git workflow for contributing.


License

This project is licensed under the MIT License - see the LICENSE file for details.


Acknowledgements

GitJet was created with ❤️ by Suhaib.


Installation and Setup Notes

  • Ensure you have Node.js and npm installed.
  • GitJet uses simple-git for Git operations, chalk for terminal colors, and ora for spinner effects to enhance the user experience.

Example Output for Quick Commit:

Processing quick commit...
Adding changes...
Staged files: ["src/index.js", "src/utils.js"]
Committing changes...
Changes successfully committed and pushed!

Enjoy using GitJet and simplify your Git workflow with style! 🚀