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

hxrrrrri-ui

v1.0.1

Published

Ultra Luxury Glass + Ultra Minimal React component library by Harisankar S (MR.K)

Downloads

12

Readme

HXRRRRRI-UI

The most comprehensive React component library you'll find. 7 design systems. 100+ production-ready components. Full TypeScript. Framer Motion throughout. Zero configuration.

Live Docs → | By Harisankar S (MR.K)


7 Design Systems

| Icon | System | system prop | Philosophy | |------|--------|---------------|-----------| | ✦ | Luxury | luxury | Glassmorphism, inset highlights, ambient glow — Apple Vision Pro grade | | ◻ | Minimal | minimal | Ink on paper, flat, Swiss-grid typography precision | | ⬛ | Brutalist | brutalist | Bold borders, offset shadows, raw visual energy | | ◈ | Neo-Futuristic | neofuturistic | Neon glow, holographic surfaces, scan-line aesthetics | | ⊞ | Enterprise | enterprise | Clean SaaS, data-heavy dashboards, subtle elevation | | ⬡ | Experimental | experimental | Asymmetric corners, physics-based, unconventional | | ♿ | A11y | a11y | WCAG 2.1 AA, high contrast, full keyboard navigation |


Full Component Catalogue — 100+ Components

Core

HxButton (18 variants × 4 sizes) · HxCard (tilt, accent bar, hover lift) · HxInput (text, password, OTP, AI, search) · HxTextarea · HxModal (sm/md/lg/xl) · HxDropdown (single, multi, searchable) · HxThemeSwitcher

Feedback

HxAlert (info/success/warning/error, dismissible) · HxToaster + toast() imperative API · HxProgress (linear, striped, animated) · HxCircularProgress · HxSkeleton (text/card/circular/rectangular) · HxSpinner · HxBadge (count, dot, positions)

Navigation

HxTabs (line/pill/enclosed/soft, badges) · HxBreadcrumb (custom separator, collapsed) · HxPagination (siblings, edge pages) · HxStepper (horizontal/vertical, dots, progress) · HxNavMenu (grouped, keyboard shortcuts, danger) · HxSidebar (collapsible, nested items, badges)

Layout

HxStack · HxGrid + HxGridItem · HxSimpleGrid (auto-fill) · HxDivider (labelled, dashed, vertical) · HxContainer (sm/md/lg/xl/2xl) · HxAspectRatio · HxCenter · HxWrap · HxBox · HxScrollArea

Form

HxCheckbox (indeterminate) · HxRadioGroup (default/card variants) · HxSwitch (sizes, descriptions) · HxSlider (marks, custom colour) · HxRating (star/heart, half-stars) · HxFileUpload (drag & drop, size validation) · HxNumberInput (prefix/suffix, min/max) · HxColorPicker (presets, hex input) · HxPinInput (OTP, mask)

Display

HxTooltip (4 placements, delay) · HxPopover (click/hover trigger) · HxAccordion (default/separated/flush, multiple) · HxTag + HxTagGroup (removable, selectable) · HxChip · HxAvatarGroup (max + overflow count) · HxStat (trend indicators) · HxCode (inline + block) · HxKbd · HxTable (striped, hover, custom render) · HxBadge

Overlay

HxDrawer (left/right/top/bottom, sizes) · HxContextMenu (right-click, keyboard shortcuts) · HxAlertDialog (danger/warning/info, async confirm) · HxSheet (bottom sheet, drag handle)

Advanced

HxCommandPalette (⌘K, keyboard nav, icons, kbd badges) · HxDragBoard (Kanban, lane counts, colour-coded tags) · HxDataTable (virtualised 200k+ rows, sort, search, custom render) · HxTimeline (vertical/horizontal, status colours) · HxDashboardGrid + HxDashboardTile (trend arrows, accent bars)

Motion

HxPageTransition · HxParallax · HxGesturePanel (swipe dismiss, spring physics)

Immersive

HxFloatingOrbs (configurable count/blur/opacity) · HxPerspectiveStage · HxWebGLShell (Three.js/R3F mount point)

A11y

HxAccessibleField (ARIA, required asterisk, error icon, hint text)


Quick Start

git clone https://github.com/hxrrrrri/hxrrrrri-ui
cd hxrrrrri-ui && npm install && npm run dev

Install In Another React App

# npm registry (after publish)
npm install hxrrrrri-ui framer-motion

# OR directly from GitHub
npm install github:hxrrrrri/hxrrrrri-ui
import 'hxrrrrri-ui/style.css'
import { ThemeProvider, HxButton } from 'hxrrrrri-ui'

export function Demo() {
  return (
    <ThemeProvider>
      <HxButton system="luxury" variant="gradient">Launch</HxButton>
    </ThemeProvider>
  )
}
// 1. Import styles (once, in main.tsx)
import 'hxrrrrri-ui/style.css'

// 2. Wrap app in ThemeProvider
import { ThemeProvider, HxButton, HxCard, HxModal } from 'hxrrrrri-ui'

export default function App() {
  return (
    <ThemeProvider>
      <HxCard system="luxury" tilt accentBar>
        <HxButton system="luxury" variant="gradient" size="lg">
          Launch Project
        </HxButton>
      </HxCard>
    </ThemeProvider>
  )
}

Switching Systems

// Same component — 7 completely different personalities
<HxButton system="luxury"        variant="primary">Luxury</HxButton>
<HxButton system="minimal"       variant="primary">Minimal</HxButton>
<HxButton system="brutalist"     variant="primary">Brutalist</HxButton>
<HxButton system="neofuturistic" variant="neon">Neo-Futuristic</HxButton>
<HxButton system="enterprise"    variant="primary">Enterprise</HxButton>
<HxButton system="experimental"  variant="gradient">Experimental</HxButton>
<HxButton system="a11y"          variant="primary">A11y</HxButton>

Imperative Toast API

import { HxToaster, toast } from 'hxrrrrri-ui'

// Mount once
<HxToaster position="top-right" system="luxury"/>

// Call anywhere
toast.success('Deployment successful!', 'Live at vercel.app')
toast.error('Build failed', 'TypeError on line 42')
toast.warning('Rate limit', '80% quota consumed')
toast.info('New message', 'Check your inbox')

Key Component APIs

<HxButton variant="primary" size="md" loading fullWidth icon={<Icon/>} iconPosition="right"/>

<HxCard tilt accentBar hover padding="lg" system="luxury"/>

<HxDataTable columns={cols} rows={rows} viewportHeight={400} striped searchable
  columns={[{ key:'status', title:'Status', render:(v,row) => <Badge>{v}</Badge> }]}
/>

<HxDrawer open={open} onClose={close} placement="right" size="md"
  title="Title" description="Description" footer={<Buttons/>}
/>

<HxAlertDialog open={open} onClose={close} onConfirm={deleteIt}
  title="Delete?" variant="danger" confirmLabel="Yes, delete"
/>

<HxStepper steps={steps} activeStep={2} orientation="vertical" variant="default"/>
<HxPagination total={200} page={page} pageSize={10} onChange={setPage}/>
<HxSidebar items={items} activeId={id} onNavigate={navigate} collapsed/>

Deploy

git init && git add . && git commit -m "feat: HXRRRRRI-UI v1.0"
git remote add origin https://github.com/hxrrrrri/hxrrrrri-ui
git push -u origin main
# Import to vercel.com/new → Vite auto-detected → Deploy

Publish To npm (Maintainer)

First publish

npm login
npm whoami
npm run release:check
npm publish --access public

Publish updates

# choose one
npm run release:patch
npm run release:minor
npm run release:major

npm run release:check
npm publish --access public
git push origin HEAD --follow-tags

For complete release notes and troubleshooting, see docs/PUBLISHING.md.


MIT License · Built by Harisankar S (MR.K) · MBCET '26