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

nexora-ui

v1.0.1

Published

A UI library for React + Tailwind Components.

Readme

nexora-ui

A professional TypeScript-based CLI tool that allows developers to easily install React + Tailwind UI components into their projects.

npm version npm downloads License: ISC

Installation

You can use nexora-ui without installation via npx:

npx nexora-ui add button

Or install globally:

npm install -g nexora-ui

Quick Start

Add a component to your React project:

npx nexora-ui add button

List available components:

npx nexora-ui list

Get help:

npx nexora-ui --help

Features

  • 🚀 Zero Configuration - Works out of the box with any React + Tailwind project
  • 📦 Component Library - Pre-built, accessible components ready to use
  • 🎨 Tailwind CSS - Fully styled with Tailwind CSS classes
  • 🛠️ TypeScript - Full TypeScript support with proper type definitions
  • 🔧 Customizable - Easy to modify and extend components
  • 📱 Responsive - Mobile-first responsive design
  • Accessible - Built with accessibility in mind

Available Components

  • Button - Versatile button component with multiple variants
  • Card - Flexible card component with header, content, and footer
  • Input - Form input component with validation states
  • Glare Card - Card with glare effect

Usage

Adding Components

# Add a single component
npx nexora-ui add button

# Add multiple components
npx nexora-ui add button card input glare-card

# Force overwrite existing files
npx nexora-ui add button --force

# Custom output directory
npx nexora-ui add button --output src/components

Project Requirements

  • React 18+ project
  • Tailwind CSS configured
  • TypeScript (recommended)

Generated File Structure

After running npx nexora-ui add button:

your-project/
├── components/
│   └── ui/
│       └── button.tsx    # Generated component
└── lib/                  # Auto-generated if needed
    └── utils.ts         # cn utility function

Component Examples

Button Component

import { Button } from '@/components/ui/button'

export default function Example() {
  return (
    <div className="space-x-2">
      <Button variant="default">Default</Button>
      <Button variant="destructive">Destructive</Button>
      <Button variant="outline">Outline</Button>
      <Button variant="secondary">Secondary</Button>
      <Button variant="ghost">Ghost</Button>
      <Button variant="link">Link</Button>
    </div>
  )
}

Card Component

import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'

export default function Example() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Card Title</CardTitle>
      </CardHeader>
      <CardContent>
        <p>Card content goes here.</p>
      </CardContent>
    </Card>
  )
}

Input Component

import { Input } from '@/components/ui/input'

export default function Example() {
  return (
    <Input
      type="email"
      placeholder="Enter your email"
      className="max-w-sm"
    />
  )
}

Glare Card Component

import { GlareCard } from '@/components/ui/glare-card'

export default function Example() {
  return (
    <GlareCard>
      <h2>Glare Card Title</h2>
      <p>Glare card content goes here.</p>
    </GlareCard>
  )
}

Utility Function

nexora-ui includes a powerful cn utility for conditional class names:

import { cn } from '@/lib/utils'

// Combine classes conditionally
const buttonClasses = cn(
  'px-4 py-2 rounded-md',
  isActive && 'bg-blue-500',
  className
)

This utility combines clsx and tailwind-merge for optimal Tailwind CSS class handling.

Command Reference

| Command | Description | |---------|-------------| | add <component> | Add a component to your project | | list | List all available components | | --help | Show help information | | --version | Show version number |

Command Options

| Option | Short | Description | |--------|-------|-------------| | --output <path> | -o | Output directory (default: components/ui) | | --force | -f | Overwrite existing files without prompting |

Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Setup

  1. Clone the repository:

    git clone https://github.com/Bhumi1729/nexora-ui.git
    cd nexora-ui
  2. Install dependencies:

    npm install
  3. Build the project:

    npm run build
  4. Link for local testing:

    npm link

Adding New Components

  1. Create your component in cli/components/
  2. Follow existing patterns and TypeScript interfaces
  3. Use the cn utility for conditional styling
  4. Include proper accessibility attributes
  5. Test in a real React project

License

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

Support

Acknowledgments

Inspired by shadcn/ui and built with modern React patterns.


Made with ❤️ by Bhumika Yadav