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

@vp21/t-store

v1.0.0

Published

Terminal Command Store - Save and run commands with aliases

Readme

🚀 T-Store

Terminal Command Store - Save frequently used terminal commands with easy-to-remember aliases.

npm version License: MIT

✨ Features

  • 🎯 Command Aliases - Save long commands as short, memorable names
  • 📦 Interactive Dashboard - Beautiful TUI to manage all commands
  • 🔧 PATH Integration - Run aliases directly without tstore prefix
  • 📝 Full CRUD - Add, edit, delete, and view stored commands
  • 🚀 Zero Config - Works out of the box
  • 💻 Cross Platform - Works on Linux, macOS, and Windows

📦 Installation

Via npm (Recommended)

npm install -g @vp21/t-store
# or
bun install -g @vp21/t-store

Via GitHub Releases (Standalone Binary)

Download the latest binary for your platform from GitHub Releases.

# Linux/macOS
chmod +x tstore-linux
cp tstore-linux /usr/local/bin/tstore

# Windows
# Add tstore-windows.exe to your PATH

🚀 Quick Start

1. Setup PATH (One-time)

Add this to your ~/.bashrc, ~/.zshrc, or ~/.config/fish/config.fish:

export PATH="$HOME/.tstore/bin:$PATH"

Then reload your shell:

source ~/.zshrc  # or source ~/.bashrc

2. Open Dashboard

tstore

3. Add Your First Command

tstore add

Or use the dashboard to add commands interactively!

📖 Usage

Dashboard

tstore

Opens an interactive TUI to manage all commands.

Add Command

tstore add
# Follow the prompts to enter name, command, and description

Example:

  • Name: tqnpm
  • Command: clear; export AWS_PROFILE=tq; npm run dev
  • Description: Run dev with tq AWS profile

List Commands

tstore list

Run Command

# Via tstore
tstore tqnpm

# Or directly (after PATH setup)
tqnpm

Edit Command

tstore edit

Delete Command

tstore delete

Setup Help

tstore setup

💡 Use Cases

  • Environment Switching: dev, staging, prod profiles
  • Project Commands: start, build, deploy with project-specific settings
  • Complex Commands: Multi-step commands with environment variables
  • Workflow Automation: Repeated terminal workflows

📁 Storage

Commands are stored in:

  • JSON Database: ~/.tstore/commands.json
  • Executable Scripts: ~/.tstore/bin/

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📝 License

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

⭐ Show Your Support

If you find T-Store helpful, please give it a star on GitHub!


Made with ❤️ for the terminal-loving developer