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

cli-yelper

v1.0.6

Published

A CLI tool to manage quick access terminal commands.

Readme

es

CLI Yelper 🚀

CLI Yelper is a simple and intuitive command-line interface tool that helps you manage, store, and quickly execute your frequently used terminal commands. Say goodbye to retyping long commands or searching through your shell history!

Features

  • Store Commands: Easily save your most used CLI commands with custom names.
  • Quick Execution: Run your saved commands directly from an interactive menu.
  • Organized List: View all your stored commands at a glance.
  • Create & Delete: Add new commands or remove old ones effortlessly.
  • Persistent Storage: Your commands are saved locally and are available across sessions.

Installation

You can install CLI Yelper globally via npm:

npm install -g cli-yelper

Usage

After installation, simply run cli-yelper in your terminal to start the interactive menu:

cli-yelper

Interactive Menu

When you run cli-yelper, you'll be greeted with a welcome message and a menu of options:

-------------------------------------------------------------
------------------- WELCOME TO CLI-YELPER -------------------
-------------------------------------------------------------
Your commands are being saved in /path/to/your/data/commands.json
-------------------------------------------------------------

Select what to do:
❯ Create new
  List all
  Delete
  Exit

Here's how to interact with the menu:

  • Navigate: Use the arrow keys ($\uparrow$, $\downarrow$) to move between options.
  • Select: Press Enter to choose an option.

Available Actions

1. Create New Command

If you don't have any commands saved, or you want to add a new one, select "Create new".

You'll be prompted for two pieces of information:

  • Name of the command: A friendly name for your command (e.g., "Update System", "Start Dev Server").
  • Command to execute: The actual terminal command (e.g., sudo apt update && sudo apt upgrade -y, npm run dev).

Example:

Select what to do:
  List all
❯ Create new
  Delete
  Exit
Name of the command: My First Command
Command to execute: echo "Hello, CLI Yelper!"

2. Run a Saved Command

If you have saved commands, they will appear in the main menu. Simply select the command you want to run.

Example:

Select what to do:
  My First Command
❯ List all
  Create new
  Delete
  Exit

After selecting a command, CLI Yelper will execute it and display the output.

3. List All Commands

Choose "List all" to see a clear overview of all your saved commands, including their names and the commands they execute.

Select what to do:
  My First Command
❯ List all
  Create new
  Delete
  Exit

--- Available commands ---
0. My First Command -> echo "Hello, CLI Yelper!"
----------------------

4. Delete a Command

Select "Delete" to remove an existing command. You'll then be prompted to choose which command to delete from a list. To prevent accidental deletions, you'll need to confirm your choice by typing the command's name.

Example:

Select what to do:
  My First Command
  List all
  Create new
❯ Delete
  Exit
Select command to delete:
❯ My First Command
  Exit

You are about to delete the following command:

        name - My First Command
command line - echo "Hello, CLI Yelper!"

Type the name of the command to confirm: My First Command

5. Exit

Select "Exit" to quit CLI Yelper.

Version Information

To check the installed version of CLI Yelper, use the --version or -v flag:

cli-yelper --version
# or
cli-yelper -v

How It Works

CLI Yelper stores your commands in a JSON file named commands.json within a dedicated data directory on your system. This ensures your commands are persistent and available every time you run the tool. The location of this file is displayed when you start CLI Yelper.

Contributing

CLI Yelper is an open-source project, and contributions are welcome! Feel free to open issues for bug reports or feature requests, or submit pull requests with your improvements.

License

This project is licensed under the MIT License.