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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@codecious/coreuix

v0.4.3

Published

A collection of re-usable, accessible, and customizable UI components built with Radix UI and Tailwind CSS.

Readme

CoreUIX

CoreUIX is a collection of re-usable, accessible, and customizable UI components built with Radix UI and Tailwind CSS.

Philosophy: "Put-in" Components

CoreUIX is not a traditional UI library that you install as a dependency (like MUI or Bootstrap). Instead, it follows a "put-in" philosophy (similar to shadcn/ui):

  • You own the code: Components are copied directly into your project's source code.
  • Full Customization: Since the code lives in your repository, you can modify, extend, and style it exactly how you need.
  • No Abstraction Layers: You don't have to fight against a library's API or theming system. You have direct access to the underlying markup and logic.

Features

  • 🧩 Radix UI Primitives: Built on top of headless, accessible primitives.
  • 🎨 Tailwind CSS: Styled with utility classes for rapid development.
  • 📘 TypeScript: Fully typed for better developer experience.
  • 🌓 Dark Mode: Ready for light and dark themes out of the box.
  • 🔧 CLI Tool: An interactive installer to easily add components to your projects.

Getting Started

Prerequisites

Ensure your project is set up with:

  • React
  • Tailwind CSS
  • TypeScript

You should also have a cn utility for class merging (usually in src/lib/utils.ts):

import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"

export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs))
}

Installation via CLI

CoreUIX comes with a CLI tool to automate the process of copying components into your projects.

Run the interactive installer:

npx coreuix

CLI Commands

| Command | Description | |---------|-------------| | add | Interactive menu to select and add components (default) | | add --all | Install all available components at once | | update | Update outdated components (compares signatures) | | help | Show help and available commands |

Examples:

# Interactive component selection
npx coreuix

# Add all components
npx coreuix add --all

# Update outdated components
npx coreuix update

How it works

The CLI will:

  1. Scan your workspace for projects (looking for src/components/ui).
  2. List available components from CoreUIX.
  3. Copy the selected components to your project.
  4. Rewrite imports automatically (e.g., changing internal @coreuix/lib/cn to your project's alias like @/lib/utils).
  5. Add signatures to track component versions (for updates).

Signature System

Each copied component includes a signature comment at the top of the file:

// @coreuix-signature: a1b2c3d4

This signature (MD5 hash) allows the CLI to:

  • Detect outdated components when running update
  • Skip already-installed components when using add
  • Track which components came from CoreUIX

Note: The update command only works for components that have signatures. Use add --all first to ensure all components have signatures.

Manual Installation

If you prefer, you can manually copy the component files from libraries/CoreUIX/src/components/ui to your project. Just remember to update the imports to match your project structure.

Available Components

CoreUIX includes a wide range of components, including:

  • Layout: Accordion, Card, ScrollArea, Separator, Sheet, Sidebar...
  • Forms: Button, Checkbox, Input, Select, Switch, Slider, Form...
  • Feedback: Alert, Dialog, Progress, Sonner (Toast), Tooltip...
  • Navigation: Breadcrumb, DropdownMenu, Menubar, NavigationMenu, Tabs...
  • Data Display: Avatar, Badge, Calendar, Table, Chart...

License

MIT © Codecious