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

@nuraly/lumenui

v0.16.1

Published

A comprehensive collection of enterprise-class web components built with Lit and TypeScript

Readme

We welcome contributions! Here's how to help:

  • 🐛 Report bugs via GitHub Issues
  • 💡 Suggest features in Discussions
  • 🔧 Submit pull requests for bug fixes or new components
  • 📝 Improve documentation

See CONTRIBUTING.md for detailed guidelines.i/common">


✨ Features

  • 🌈 Enterprise-grade Components - Professional UI components for modern web applications
  • 📦 40+ Components - Complete library of ready-to-use web components
  • 🛡 TypeScript First - Full type safety and excellent developer experience
  • ⚙️ Framework Agnostic - Works with React, Vue, Angular, or vanilla JavaScript
  • 🎨 Themeable - Easy customization with CSS custom properties
  • 📱 Responsive - Mobile-first design that works everywhere
  • Accessible - ARIA-compliant and keyboard navigable
  • 🚀 Lightweight - Minimal bundle size, maximum performance

📦 Installation

Install Package Bundles

# Shared utilities (mixins, controllers, themes, utils)
npm install @nuralyui/common

# Form components (input, select, checkbox, radio, etc.)
npm install @nuralyui/forms

# Layout components (grid, flex, card, layout)
npm install @nuralyui/layout

# Theme CSS bundles
npm install @nuralyui/themes

Or Install Individual Components

npm install @nuralyui/button
npm install @nuralyui/input
npm install @nuralyui/datepicker

🚀 Quick Start

Vanilla JavaScript/HTML

<script type="module">
  import '@nuralyui/button';
  import '@nuralyui/input';
</script>

<nr-button variant="primary">Click me</nr-button>
<nr-input placeholder="Enter text" label="Name"></nr-input>

React

import { NrButton } from "@nuralyui/button/react";
import { NrInput } from "@nuralyui/input/react";

function App() {
  return (
    <>
      <NrButton variant="primary" onClick={() => alert('Clicked!')}>
        Click me
      </NrButton>
      <NrInput 
        placeholder="Enter text" 
        label="Name"
        onInput={(e) => console.log(e.target.value)}
      />
    </>
  );
}

Vue

<template>
  <nr-button variant="primary" @click="handleClick">Click me</nr-button>
  <nr-input placeholder="Enter text" label="Name" @input="handleInput" />
</template>

<script>
import '@nuralyui/button';
import '@nuralyui/input';

export default {
  methods: {
    handleClick() { alert('Clicked!'); },
    handleInput(e) { console.log(e.target.value); }
  }
}
</script>

� Available Components

📦 Package Bundles

🧩 All Components

Form & Input

  • Button, Input, Textarea, Checkbox, Radio, Radio Group, Select, Slider Input, File Upload, Form, Datepicker, Timepicker, Colorpicker

Layout & Structure

  • Layout, Grid, Flex, Card, Divider

Navigation

  • Tabs, Menu, Dropdown, Breadcrumb

Feedback

  • Modal, Toast, Tooltips, Popconfirm, Alert

Display

  • Table, Collapse, Carousel, Timeline, Badge, Label, Icon, Image, Video, Canvas, Skeleton

Advanced

  • Chatbot, Document, Console

🎨 Theming

Customize components with CSS custom properties:

:root {
  --nr-primary-color: #4F46E5;
  --nr-font-family: 'Inter', sans-serif;
  --nr-border-radius: 6px;
}

Or use our pre-built themes:

<link rel="stylesheet" href="node_modules/@nuralyui/themes/carbon.css">

Required CSS (CDN consumers)

Components rely on theme tokens shipped in @nuraly/lumenui at packages/themes/dist/default.css. Pin the same ${VERSION} you use for the JS bundle:

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@nuraly/lumenui@${VERSION}/packages/themes/dist/default.css"
/>

Concrete example with the current version:

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@nuraly/[email protected]/packages/themes/dist/default.css"
/>

The dist/cdn.js loader auto-injects this <link> (tagged data-nuralyui-themes) when no @nuraly/lumenui or @nuralyui/themes stylesheet is already present. Link your own themes CSS first to override the default (for example to pick carbon.css) and the auto-inject is skipped.

🌍 Browser Support

| Chrome | Firefox | Safari | Edge | | --- | --- | --- | --- | | ✅ 88+ | ✅ 78+ | ✅ 14+ | ✅ 88+ |

� Development

Local Setup

# Clone the repository
git clone https://github.com/Nuralyio/NuralyUI.git
cd NuralyUI

# Install dependencies
npm install

# Start development server
npm start

Available Scripts

npm start              # Start dev server with watch mode
npm run build          # Build all components
npm run test           # Run tests
npm run lint           # Lint code
npm run format         # Format with Prettier

Project Structure

hybrid-ui/
├── src/
│   └── components/     # All web components
├── packages/           # Package bundles
│   ├── common/
│   ├── forms/
│   ├── layout/
│   └── themes/
└── dist/              # Built components

🤝 Contributing

We welcome contributions! Here's how to help:

  • 🐛 Report bugs via GitHub Issues
  • 💡 Suggest features in Discussions
  • 🔧 Submit pull requests for bug fixes or new components
  • � Improve documentation

See CONTRIBUTING.md for detailed guidelines.

📄 License

BSD 3-Clause License - see LICENSE file for details.