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

bashio

v2.1.1

Published

Natural language to shell commands. Stop Googling, start doing.

Readme


Quick Start

npm i -g bashio        # Install globally
b --auth               # Setup your AI provider
b show disk usage      # Start using!

Requires Node.js 20.12.0+


What is Bashio?

Bashio converts plain English into shell commands. Describe what you want, review the command, then execute.

$ b find all files larger than 100mb and delete them
  > find . -size +100M -type f -delete

  ? Execute? (y/n/e/c/edit)

Options: y execute · n cancel · e explain · c copy · edit modify


Examples

# Files
b find all javascript files modified today
b delete all node_modules folders recursively
b compress all png images in this folder

# Git
b undo last commit but keep changes
b show commits from last week by john

# System
b kill whatever is running on port 3000
b what is my public ip address
b list all running docker containers

Chat Mode

Full-screen AI chat with streaming responses:

b --chat

Features: Session history · Slash commands · Themes · Model switching

| Shortcut | Action | |----------|--------| | Ctrl+P | Switch model | | Ctrl+O | Open sessions | | Ctrl+T | Change theme | | Ctrl+C | Exit |


Shortcuts

Save frequently used commands with placeholders:

b --add-shortcut killport "lsof -ti:{{port}} | xargs kill -9" port
b killport 3000    # Uses the shortcut

AI Providers

Configure with b --auth:

| Provider | Type | |----------|------| | Claude (Anthropic) | API Key or Pro/Max subscription | | OpenAI (ChatGPT) | API Key or Plus/Pro subscription | | GitHub Copilot | Free with Copilot subscription | | Ollama | Free, runs locally | | OpenRouter | Pay-per-use, multiple models |

Switch anytime: b --model


All Commands

Core

| Command | Description | |---------|-------------| | b <query> | Convert natural language to shell command | | b --chat | Start interactive AI chat session |

Configuration

| Command | Description | |---------|-------------| | b --auth | Configure AI provider | | b --config | View current configuration | | b --model | Change AI provider/model | | b --theme | Change color theme |

Shortcuts

| Command | Description | |---------|-------------| | b --shortcuts | List all shortcuts | | b --add-shortcut | Add a new shortcut | | b --remove-shortcut <name> | Remove a shortcut | | b --edit-shortcuts | Edit shortcuts in editor |

History & Stats

| Command | Description | |---------|-------------| | b --history | View command history | | b --history --search <term> | Search history | | b --stats | View usage statistics | | b --suggest-shortcuts | Suggest shortcuts from history | | b --clear-history | Clear command history |

Help

| Command | Description | |---------|-------------| | b --help | Show help message | | b --version | Show version (with update check) |


Safety

Bashio warns you about dangerous commands:

  > rm -rf ~/*

  WARNING: This command may cause irreversible changes.
  - Uses recursive force delete (rm -rf)
  - Targets home directory

  ? Proceed? (y/N)

Every command requires confirmation before execution.


Privacy

  • All data stored locally at ~/.bashio/
  • No telemetry or tracking
  • Queries only sent to your chosen AI provider

License

Copyright 2025 Vranda Garg

If you use, modify, or distribute this project, you must:

  1. Give credit to Vranda Garg as the original author
  2. Link to github.com/VrandaaGarg/bashio

Licensed under Apache 2.0 · View LICENSE