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

gunshi

v0.28.0

Published

Modern javascript command-line library

Downloads

42,985

Readme

Version CI InstallSize JSR

Gunshi is a modern javascript command-line library

[!TIP] gunshi (軍師) is a position in ancient Japanese samurai battle in which a samurai devised strategies and gave orders. That name is inspired by the word "command".

✨ Features

Gunshi is designed to simplify the creation of modern command-line interfaces:

  • 📏 Simple & Universal: Run commands with simple API and support for universal runtime (Node.js, Deno, Bun).
  • ⚙️ Declarative & Type Safe: Configure commands declaratively with full TypeScript support and type-safe argument parsing by args-tokens
  • 🧩 Composable & Lazy: Create modular sub-commands with context sharing and lazy loading for better performance.
  • 🎨 Flexible Rendering: Customize usage generation, validation errors, and help messages with pluggable renderers.
  • 🌍 Internationalization: Built with global users in mind, featuring locale-aware design, resource management, and multi-language support.
  • 🔌 Pluggable: Extensible plugin system with dependency management and lifecycle hooks for modular CLI development.

📡 Status

  • v0.27: stable

💿 Installation

# npm
npm install --save gunshi

## pnpm
pnpm add gunshi

## yarn
yarn add gunshi

## deno
deno add jsr:@gunshi/gunshi

## bun
bun add gunshi

🚀 Usage

import { cli } from 'gunshi'

// define a command with declarative configuration, using commandable object
const command = {
  name: 'greet',
  description: 'A greeting command',
  args: {
    name: {
      type: 'string',
      short: 'n',
      description: 'Name to greet'
    },
    greeting: {
      type: 'string',
      short: 'g',
      default: 'Hello',
      description: 'Greeting to use (default: "Hello")'
    },
    times: {
      type: 'number',
      short: 't',
      default: 1,
      description: 'Number of times to repeat the greeting (default: 1)'
    }
  },
  run: ctx => {
    const { name = 'World', greeting, times } = ctx.values
    for (let i = 0; i < times; i++) {
      console.log(`${greeting}, ${name}!`)
    }
  }
}

// run a command that is defined above
// (the 3rd argument of `cli` is the command option)
await cli(process.argv.slice(2), command, {
  name: 'my-app',
  version: '1.0.0',
  description: 'My CLI application'
})

About more details and usage, see documentations

💁‍♀️ Showcases

  • pnpmc: PNPM Catalogs Tooling
  • sourcemap-publisher: A tool to publish sourcemaps externally and rewrite sourcemap URLs at pre-publish time
  • curxy: An proxy worker for using ollama in cursor
  • SiteMCP: Fetch an entire site and use it as an MCP Server
  • ccusage: A CLI tool for analyzing Claude Code usage from local JSONL files
  • varlock: Enhanced .env file loader, using @decorator style comments to add validation, type-safety, and more

🙌 Contributing guidelines

If you are interested in contributing to gunshi, I highly recommend checking out the contributing guidelines here. You'll find all the relevant information such as how to make a PR, how to setup development) etc., there.

💖 Credits

This project is inspired and powered by:

  • citty, created by UnJS team and contributors
  • ordana, createdy by sapphi-red, inspired documentation generation
  • cline and claude 3.7 sonnet, examples and docs is generated

Thank you!

🤝 Sponsors

The development of Gunshi is supported by my OSS sponsors!

©️ License

MIT