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

tuidoscope

v0.1.16

Published

A centralized TUI management app for running TUI applications in embedded terminal windows

Readme

tuidoscope

A centralized TUI management application for running multiple TUI applications in embedded terminal windows. Built with OpenTUI and SolidJS.

Screenshots

Main Interface

Shell

Running TUI Applications

btop

Command Palette

Command Palette

Edit App Modal

Edit App

Features

  • Embedded Terminals: Run multiple TUIs in a single window using Ghostty's high-performance terminal emulator.
  • Tab Management: Organize and switch between different applications using a vertical sidebar.
  • Simple Modal Keyboard: Two modes - TABS mode for navigation and TERMINAL mode for PTY input. Toggle with Ctrl+A.
  • Command Palette: Quickly search and switch between apps with a fuzzy-search palette (Space).
  • Runtime Management: Add, edit, and remove application entries directly within the app without restarting.
  • Session Persistence: Automatically remembers and restores your running applications and active tab between restarts.
  • Highly Configurable: Customize themes and application lists via YAML.
  • Path Expansion: Supports ~, <CONFIG_DIR>, and <STATE_DIR> tokens in paths.
  • App Availability Detection: Add Tab modal shows which TUI apps are installed on your system.

Documentation

For detailed guides, see the docs/ directory:

See also: CONFIG.md for a comprehensive configuration reference.

Tech Stack

Getting Started

Prerequisites

  • Bun runtime installed on your system.
  • A terminal that supports TUI applications (xterm-256color recommended).

Quick Start (No Install)

Run tuidoscope instantly without installing:

bunx tuidoscope

Installation

Install globally:

bun install -g tuidoscope

Then run from anywhere:

tuidoscope

Development

Clone the repository and install dependencies:

git clone https://github.com/shuv1337/tuidoscope.git
cd tuidoscope
bun install

Start the application in development mode:

bun dev

Build for production:

bun run build

Run typechecks:

bun run typecheck

Configuration

Tuidoscope looks for a configuration file at ~/.config/tuidoscope/tuidoscope.yaml. It also supports a local tuidoscope.yaml in the current working directory for project-specific setups.

Keyboard Shortcuts

Tuidoscope uses a simple two-mode system:

  • Ctrl+A - Toggle between TABS and TERMINAL mode
  • Double-tap Ctrl+A - Send Ctrl+A to the terminal (useful for nested tmux/screen)

TABS Mode (single keystrokes):

| Key | Action | |-----|--------| | j / k | Navigate down/up in tab list | | gg | Jump to first tab | | G | Jump to last tab | | Enter | Select/start app | | Space | Open command palette | | t | Add new tab | | e | Edit selected app | | x | Stop selected app | | r | Restart selected app | | K | Kill all running apps | | q | Quit tuidoscope |

TERMINAL Mode: All keystrokes pass through to the embedded terminal.

Theme Customization

Default theme is Night Owl. Customize in your tuidoscope.yaml:

theme:
  primary: "#82aaff"      # Blue - selections
  background: "#011627"   # Deep dark blue
  foreground: "#d6deeb"   # Light text
  accent: "#7fdbca"       # Cyan - active indicators
  muted: "#637777"        # Gray - inactive elements

Change Log

v0.3.0

  • Simplified Keyboard System: Replaced tmux-style leader key with simple focus-toggle model using Ctrl+A.
  • Two-Mode Interface: TABS mode for navigation (single keystrokes) and TERMINAL mode for PTY input.
  • Enhanced Add Tab Modal: Now shows app presets with availability detection directly in the modal.
  • Streamlined Config: Removed keybinds configuration - keyboard shortcuts are now fixed for consistency.

v0.2.0

  • Leader Key System: tmux-style configurable leader key (default Ctrl+A).
  • App Availability Detection: Preset list shows which apps are installed on your system.
  • Expanded Presets: 30+ TUI apps including AI coding agents (Claude, OpenCode, Aider, Gemini, Codex).
  • Night Owl Theme: Updated default theme to Night Owl color scheme.

v0.1.0

  • Initial release.
  • Embedded terminal windows via ghostty-opentui.
  • Vertical tab sidebar for application management.
  • Command palette with fuzzy search.
  • Session persistence (running apps & active tab).
  • Runtime application configuration (Add/Edit).
  • Path expansion for working directories.

Contributing

Contributions are welcome! Please feel free to open an issue or submit a pull request on GitHub.

Acknowledgments

This project is built directly on top of:

  • OpenTUI - Provides the declarative component model and rendering engine for the entire interface.
  • ghostty-opentui - Enables high-performance, embedded terminal sessions within the application.

Huge thanks to both for making this possible.

License

MIT