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

termplex

v0.1.6

Published

Launch configurable multi-pane terminal workspaces with one command

Readme

termplex

Chapa Badge CI npm version license

Launch configurable multi-pane terminal workspaces with one command.

Install

npm i -g termplex

Requires Node >= 18. tmux is installed automatically on first launch if missing (macOS via Homebrew, Linux via apt/dnf/yum/pacman).

Quick Start

termplex .                        # launch workspace in current directory
termplex add myapp ~/code/myapp   # register a project
termplex myapp                    # launch by project name

Default Layout (full preset)

termplex .    (panes=3, editor=claude, sidebar=lazygit, server=true)

┌─────────────────── 75% ───────────────────┬──── 25% ────┐
│                   │                        │             │
│    claude (1)     │    claude (3)          │   lazygit   │
│                   │                        │             │
├───────────────────┤────────────────────────│             │
│                   │                        │             │
│    claude (2)     │    server (shell)      │             │
│                   │                        │             │
└───────────────────┴────────────────────────┴─────────────┘
      left col             right col            sidebar

Layout Presets

| Preset | Panes | Server | Use case | |---|---|---|---| | full | 3 | yes | Default -- multi-agent coding + dev server | | pair | 2 | yes | Two editors + dev server | | minimal | 1 | no | Simple editor + sidebar only | | cli | 1 | yes | CLI tool development -- editor + npm login |

termplex . --layout minimal       # 1 editor pane, no server
termplex . -l pair                # 2 editors + server

Per-project Config

Drop a .termplex file in your project root to override machine-level config:

# .termplex
layout=minimal
editor=vim
server=npm run dev

Config resolution order: CLI flags > .termplex > machine config > preset > defaults

Commands

| Command | Description | |---|---| | termplex <target> | Launch workspace (project name, path, or .) | | termplex add <name> <path> | Register a project name to a directory | | termplex remove <name> | Remove a registered project | | termplex list | List all registered projects | | termplex set <key> [value] | Set a machine-level config value | | termplex config | Show current machine configuration |

CLI Flags

| Flag | Description | |---|---| | -l, --layout <preset> | Use a layout preset (minimal, full, pair, cli) | | -f, --force | Kill existing session and recreate it | | --editor <cmd> | Override editor command | | --panes <n> | Override number of editor panes | | --editor-size <n> | Override editor width percentage | | --sidebar <cmd> | Override sidebar command | | --server <value> | Server pane: true, false, or a command | | --mouse / --no-mouse | Enable/disable tmux mouse mode (default: on) | | -h, --help | Show help message | | -v, --version | Show version number |

Config Keys

| Key | Default | Description | |---|---|---| | editor | claude | Command launched in editor panes | | sidebar | lazygit | Command launched in the sidebar pane | | panes | 3 | Number of editor panes | | editor-size | 75 | Width percentage for the editor grid | | server | true | Server pane: true (shell), false (none), or a command | | mouse | true | Enable tmux mouse mode: true or false | | layout | | Default layout preset |

Machine config is stored at ~/.config/termplex/config:

termplex set editor vim           # use vim as the editor
termplex set server "npm run dev" # run dev server automatically
termplex set layout minimal       # default to minimal preset

Alias

termplex is also available as ws for quick access:

ws .
ws myapp

Docs

License

MIT