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

luminacn

v3.4.0

Published

Copy-paste UI for Angular

Readme

🚀 luminacn/ui

npm version npm downloads license

Signal-first, headless UI primitives for Angular.
Build accessible, composable components — owned directly in your codebase.

CLI-generated UI system for Angular 19+ and Tailwind CSS v4.


✨ Overview

luminacn/ui is a modern UI architecture for Angular that gives you full ownership of your components.

Instead of installing opaque dependencies, you generate components directly into your project — fully customizable, fully transparent, and fully yours.

Core Ideas

  • 🧠 Primitives over components — build from composable building blocks
  • Signal-native — designed for Angular Signals (zoneless-ready)
  • 🧩 Headless-first — logic separated from styling
  • 📦 Locally owned — components live in your source, not node_modules
  • 🛠 CLI-driven — install, update, diff, and rollback with precision

⚡ Quick Start

Initialize your project

npx luminacn@latest init

Add components

npx luminacn add sheet navigation-menu input-otp

🧩 How it works

CLI → Registry → Generator → Your Codebase
                     ↓
            Angular Signals UI

Every component is:

  • generated into your repo
  • fully editable
  • version-tracked via CLI

No runtime lock-in. No hidden abstraction.


🛠 CLI

| Command | Description | | ---------- | ------------------------------------ | | init | Initialize luminacn in your project | | add | Add components to your codebase | | list | View available components | | upgrade | Update components to latest versions | | rollback | Revert to a previous state | | diff | Compare local vs registry | | doctor | Validate environment setup | | remove | Remove components safely |


🧱 Component Categories

Navigation & Layout

Navigation Menu · Sheet · Accordion · Tabs · Tooltip · Dropdown · Context Menu · Pagination · Stepper

Data Display

Data Table · Carousel · Infinite Scroll · Badge · Alert · Progress · Skeleton · Spinner

Form Controls

Input · Input OTP · Textarea · Checkbox · Radio · Switch · Toggle · Toggle Group · Slider · FormField

Overlays & Feedback

Dialog · Popover · Toast · Sheet · Tooltip

Typography

Headings · Text · Lead · Kbd · Utilities


🧪 Example — Stepper

<nav lmStepper [activeStep]="0" #stepper="lmStepper">
  <button lmStepperTrigger [index]="0">Profile</button>

  <button lmStepperTrigger [index]="1" [disabled]="profileInvalid()">
    Security
  </button>

  <section class="mt-4">
    @if (stepper.activeStep() === 0) {
    <profile-form />
    } @if (stepper.activeStep() === 1) {
    <security-settings />
    }
  </section>
</nav>

🧠 Philosophy

1. You own the code

Every component is generated into your project. No black boxes.

2. Headless by default

Logic is isolated from styling. Use your own design system freely.

3. Signal-native architecture

Built for Angular Signals and future zoneless Angular.

4. Zero dependency core

No runtime UI framework lock-in.


🆚 Why luminacn/ui?

| Feature | luminacn/ui | Angular Material | CDK | | --------------------- | ----------- | ---------------- | ---------- | | Source ownership | ✅ Yes | ❌ No | ⚠️ Partial | | Headless architecture | ✅ Yes | ❌ No | ⚠️ Partial | | Signals-ready | ✅ Yes | ❌ No | ❌ No | | Tailwind-first | ✅ Yes | ❌ No | ❌ No | | CLI-driven updates | ✅ Yes | ❌ No | ❌ No |


🗺️ Roadmap

Core Interactions

  • Sheet (Drawer) ✅
  • Navigation Menu ✅
  • Input OTP ✅
  • Combobox / Autocomplete ✅
  • Command Palette (Cmd+K) ⏳

Data & Display

  • Infinite Scroll ✅
  • Data Table ⏳
  • Carousel ⏳

Forms

  • Toggle Group ✅
  • Calendar / Date Picker ✅

Layout

  • Resizable Panels ⏳
  • Pagination ⏳
  • Context Menu ✅

⚡ Installation Philosophy

No lock-in. No runtime magic.

Everything is generated:

  • You inspect it
  • You modify it
  • You ship it

📦 License

MIT


🔥 Final Note

luminacn/ui is built for developers who want:

“Shadcn-style ownership — but for Angular.”