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

kiviui-cli

v1.0.18

Published

A powerful command-line interface for installing React and Next.js components from the KiviUI component library

Downloads

1,265

Readme

🚀 KiviUI CLI

A powerful command-line interface for installing React and Next.js components from the KiviUI component library.

📋 Table of Contents

✨ Features

  • 🎨 Beautiful UI Components: Access to a curated collection of React and Next.js components
  • 🚀 Fast Installation: Install components with a single command
  • 📦 Batch Operations: Install all components at once
  • 🎯 TypeScript Support: Components available in both TypeScript and JavaScript
  • 🎨 Modern Design: Components follow modern design principles
  • 📱 Responsive: All components are mobile-friendly
  • Lightweight: Minimal dependencies, fast performance

📦 Installation

Global Installation (Recommended)

npm install -g kiviui-cli

Local Installation

npm install kiviui-cli

Manual Installation

  1. Clone the repository:
git clone https://github.com/Vegadjay/kiviui-cli.git
cd kiviui-cli
  1. Install dependencies:
npm install
  1. Make it executable:
chmod +x index.js

🚀 Usage

Basic Usage

kivi <command> [options]

Quick Start

  1. Show CLI information:
kivi info
  1. List available components:
kivi list
  1. Install a component:
kivi add <component-name>
  1. Install all components:
kivi create all

📚 Commands

kivi info

Shows detailed information about the KiviUI CLI.

Output includes:

  • KiviUI ASCII art
  • Version information
  • Author details
  • GitHub repository
  • Registry URL
  • Description

Example:

kivi info

kivi list

Lists all available components in the registry.

Output includes:

  • Component names
  • Component titles (if available)
  • Component types (if available)

Example:

kivi list

kivi add <name>

Installs a specific component from the registry.

Parameters:

  • name (required): The name of the component to install

Output includes:

  • Installation progress
  • Component details (name, title, type, author)
  • File locations
  • Success confirmation

Example:

kivi add button
kivi add card
kivi add navigation

kivi create all

Installs all available components from the registry.

Features:

  • Downloads all components sequentially
  • Shows progress for each component
  • Provides success/error tracking
  • Displays summary at the end

Example:

kivi create all

💡 Examples

Installing a Single Component

# Install a button component
kivi add button

# Install a card component
kivi add card

# Install a navigation component
kivi add navigation

Installing All Components

# Install all available components
kivi create all

Checking Available Components

# List all available components
kivi list

Getting CLI Information

# Show CLI information and author details
kivi info

📁 Project Structure

After installation, components are organized in the kiviui/ folder:

your-project/
├── kiviui/
│   ├── components/
│   │   ├── button/
│   │   │   ├── Button.tsx
│   │   │   ├── Button.jsx
│   │   │   └── index.ts
│   │   ├── card/
│   │   │   ├── Card.tsx
│   │   │   ├── Card.jsx
│   │   │   └── index.ts
│   │   └── ...
│   ├── styles/
│   │   └── globals.css
│   └── utils/
│       └── helpers.ts
├── package.json
└── ...

🎨 Component Types

KiviUI provides various types of components:

  • UI Components: Buttons, cards, inputs, modals
  • Layout Components: Navigation, sidebar, footer
  • Data Display: Tables, lists, charts
  • Feedback Components: Alerts, notifications, loaders
  • Form Components: Inputs, selects, checkboxes
  • Media Components: Images, videos, icons

🔧 Configuration

Registry URL

The CLI connects to the KiviUI registry at:

http://localhost:3000/api/components

Output Directory

Components are installed in the kiviui/ folder in your current working directory.

🛠️ Development

Prerequisites

  • Node.js (v14 or higher)
  • npm or yarn

Setup Development Environment

  1. Clone the repository:
git clone https://github.com/Vegadjay/kiviui-cli.git
cd kiviui-cli
  1. Install dependencies:
npm install
  1. Make the CLI executable:
chmod +x index.js
  1. Link for development:
npm link

Running Tests

npm test

Building

npm run build

🤝 Contributing

We welcome contributions! Here's how you can help:

  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

Contribution Guidelines

  • Follow the existing code style
  • Add tests for new features
  • Update documentation as needed
  • Ensure all tests pass

📝 License

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

👨‍💻 Author

Jay Vegad

🙏 Acknowledgments

  • Thanks to all contributors who help improve KiviUI
  • Inspired by modern component libraries
  • Built with love for the React community

📞 Support

If you encounter any issues or have questions:

  1. Check the Issues page
  2. Create a new issue with detailed information
  3. Contact the author via GitHub

🔄 Changelog

Version 1.0.0

  • Initial release
  • Basic CLI functionality
  • Component installation
  • Batch operations
  • Author information integration

Made with ❤️ by Jay Vegad