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

tabby-button-bar

v1.0.3

Published

A customizable button bar for quick command execution in Tabby Terminal, inspired by SecureCRT

Readme

Tabby Button Bar

A Tabby Terminal plugin that adds a customizable button bar for quick command execution, inspired by SecureCRT's Button Bar feature.

Features

Quick Command Buttons

  • One-Click Commands: Execute frequently used commands with a single click
  • Custom Labels: Name your buttons for easy identification
  • Color Coding: Assign colors to visually organize your commands
  • Icons: Add FontAwesome icons to buttons
  • Tooltips: Add descriptions that show on hover

Command Options

  • Send Enter: Optionally send Enter key after command (configurable per button)
  • Any Command: Supports any text that can be typed in terminal

Organization

  • Button Groups: Organize commands into collapsible groups
  • Drag & Drop: Reorder buttons (coming soon)
  • Import/Export: Share button configurations (coming soon)

User Interface

  • Toolbar Toggle: Quick show/hide via toolbar button
  • Context Menu: Right-click buttons to edit, duplicate, or delete
  • Persistent State: Remembers visibility and button configuration

Installation

Via Tabby Plugin Manager (Coming Soon)

  1. Open Tabby Terminal
  2. Go to Settings → Plugins
  3. Search for tabby-button-bar
  4. Click Install
  5. Restart Tabby

From Source

  1. Clone this repository
  2. Install dependencies:
    npm install --legacy-peer-deps
  3. Build the plugin:
    npm run build
  4. Link to Tabby plugins folder:
    # macOS
    cd ~/Library/Application\ Support/tabby/plugins
    npm install /path/to/tabby-button-bar
    
    # Linux
    cd ~/.config/tabby/plugins
    npm install /path/to/tabby-button-bar
    
    # Windows
    cd %APPDATA%/tabby/plugins
    npm install /path/to/tabby-button-bar
  5. Restart Tabby

Usage

Adding Commands

  1. Click the + button in the button bar header
  2. Fill in the command details:
    • Label: Display name for the button
    • Command: The command to execute
    • Icon: FontAwesome icon name (optional)
    • Color: Button color (optional)
    • Tooltip: Description shown on hover (optional)
    • Send Enter: Whether to press Enter after the command
  3. Click Add

Executing Commands

  • Simply click any button to send the command to the active terminal
  • The command is sent to whichever terminal tab is currently focused

Managing Commands

  • Edit: Right-click a button → Edit
  • Duplicate: Right-click a button → Duplicate
  • Delete: Right-click a button → Delete

Showing/Hiding

  • Click the keyboard icon in the toolbar to toggle visibility
  • Or click the × button in the button bar header

Example Commands

Here are some useful commands to get started:

| Label | Command | Description | |-------|---------|-------------| | List Files | ls -la | List all files with details | | Disk Usage | df -h | Show disk space usage | | Memory | free -h | Show memory usage | | Top | htop | Interactive process viewer | | Docker PS | docker ps | List running containers | | Git Status | git status | Show git repository status | | Clear | clear | Clear terminal screen |

Requirements

  • Tabby Terminal v1.0.197 or later

Development

Watch Mode

npm run watch

Build

npm run build

License

MIT