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

robo-cli

v1.0.0

Published

A smart CLI tool for user management and data operations

Readme

🤖 Kevan CLI

A smart and powerful CLI tool for user management and data operations with a beautiful interface and interactive mode.

Version License Node

✨ Features

  • 🎨 Beautiful Interface - Colorful output with emojis and progress indicators
  • 🔄 Interactive Mode - User-friendly interactive prompts
  • 👤 User Management - Create, list, search, and manage users
  • 📊 Data Operations - Export and import data in multiple formats
  • ⚙️ Configuration - Persistent configuration management
  • 🚀 Fast & Reliable - Built with modern Node.js and ES modules
  • 📱 Cross-Platform - Works on Windows, macOS, and Linux

🚀 Installation

Global Installation (Recommended)

npm install -g robo-cli

Local Installation

npm install robo-cli
npx robo-cli

From Source

git clone https://github.com/yourusername/robo-cli.git
cd robo-cli
npm install
npm link

📖 Usage

Quick Start

# Show help and available commands
robo --help

# Start interactive mode
robo interactive

# Or use the short alias
robo i

User Management

# View user details
robo user detail
# or
robo u d

# Create a new user
robo user create
# or
robo u c

# List all users
robo user list
# or
robo u l

# Search users
robo user search
# or
robo u s

Data Operations

# Export data
robo data export
# or
robo d e

# Import data
robo data import
# or
robo d i

Configuration

# Show current configuration
robo config show

# Set configuration value
robo config set theme dark

# Get specific configuration
robo config get outputFormat

# Reset to defaults
robo config reset

Legacy Commands (Backward Compatibility)

# Legacy commands still work
robo detail
robo fill

🎯 Interactive Mode

The interactive mode provides a guided experience:

robo interactive

This will show you a beautiful banner and present you with menu options:

  • 👤 User Management - All user-related operations
  • 📊 Data Operations - Export/import functionality
  • Help - Show available commands
  • 🚪 Exit - Exit the application

⚙️ Configuration

The CLI automatically creates a configuration file at ~/.robo-cli/config.json with the following options:

{
  "theme": "default",
  "outputFormat": "table",
  "autoSave": true,
  "verbose": false,
  "apiEndpoint": "https://api.example.com",
  "timeout": 30000,
  "retries": 3
}

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | theme | string | "default" | UI theme (default, dark, light, colorful) | | outputFormat | string | "table" | Output format (table, json, csv, yaml) | | autoSave | boolean | true | Automatically save data after operations | | verbose | boolean | false | Enable verbose output | | apiEndpoint | string | "https://api.example.com" | API endpoint URL | | timeout | number | 30000 | Request timeout in milliseconds | | retries | number | 3 | Number of retry attempts |

🛠️ Development

Prerequisites

  • Node.js >= 18.0.0
  • npm >= 8.0.0

Setup

# Clone the repository
git clone https://github.com/yourusername/robo-cli.git
cd robo-cli

# Install dependencies
npm install

# Link for global access
npm link

# Run tests
npm test

Project Structure

robo-cli/
├── index.js              # Main CLI entry point
├── lib/
│   ├── utils.js          # Utility functions
│   ├── commands.js       # Command implementations
│   └── config.js         # Configuration management
├── package.json          # Package configuration
└── README.md            # This file

Adding New Commands

  1. Add command logic to lib/commands.js
  2. Register the command in index.js
  3. Update this README with usage examples

📦 Publishing

Prepare for Publishing

# Update version
npm version patch  # or minor, major

# Run tests
npm test

# Build (if needed)
npm run build

Publish to npm

# Login to npm
npm login

# Publish
npm publish

🤝 Contributing

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Commit your changes: git commit -m 'Add amazing feature'
  4. Push to the branch: git push origin feature/amazing-feature
  5. Open a Pull Request

📄 License

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

🙏 Acknowledgments

📞 Support


Made with ❤️ by Your Name