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

@shellui/cli

v0.2.0

Published

ShellUI CLI - Command-line tool for ShellUI

Downloads

905

Readme

@shellui/cli

ShellUI CLI - Command-line tool for ShellUI

Installation

npm install -g @shellui/cli

Or install as a dev dependency:

npm install --save-dev @shellui/cli

Usage

shellui start [path/to/project] [--host]
shellui build [path/to/project]

Commands

  • start - Start the ShellUI development server

    shellui start
    shellui start ./my-project
    shellui start --host   # listen on 0.0.0.0 for network access
  • build - Build the ShellUI application for production

    shellui build
    shellui build ./my-project

Project Structure

The CLI is organized for maintainability with a clear separation of concerns:

src/
├── cli.js              # Main CLI orchestrator
├── commands/           # All commands in separate files
│   ├── index.js       # Command registry
│   ├── start.js       # Start command implementation
│   └── build.js       # Build command implementation
└── utils/             # Utility functions
    ├── index.js       # Utilities export
    ├── config.js      # Configuration loading
    └── vite.js        # Vite-specific utilities

Development

Adding a New Command

  1. Create a new file in src/commands/ (e.g., new-command.js)
  2. Export a command function:
export async function newCommandCommand(args) {
  // Command implementation
}
  1. Register it in src/cli.js:
import { newCommandCommand } from './commands/index.js';

cli.command('new-command [args]', 'Description').action(newCommandCommand);
  1. Export it from src/commands/index.js:
export { newCommandCommand } from './new-command.js';

See src/commands/README.md for more details.

License

MIT