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

@nova-vue/ui

v0.1.1

Published

A modern Vue 3 component library built with Reka UI and Tailwind CSS

Readme

@nova-vue/ui

A modern, accessible Vue 3 component library built with Reka UI and Tailwind CSS v4.

Features

  • 🎨 Beautifully designed - Clean, modern components following best practices
  • Accessible - Built on Reka UI primitives with full WAI-ARIA compliance
  • 🎯 TypeScript first - Complete type definitions for all components
  • 🌗 Dark mode - Built-in light/dark theme support
  • 🎨 Themeable - Customize with CSS variables or use @nova-vue/colors presets
  • 📦 Tree-shakeable - Import only what you need

Installation

# npm
npm install @nova-vue/ui

# pnpm
pnpm add @nova-vue/ui

# yarn
yarn add @nova-vue/ui

# bun
bun add @nova-vue/ui

Quick Start

// main.ts
import { createApp } from 'vue'
import App from './App.vue'

// Import base styles (required)
import '@nova-vue/ui/styles.css'

createApp(App).mount('#app')
<script setup lang="ts">
import { Button } from '@nova-vue/ui/button'
</script>

<template>
  <Button>Click me</Button>
</template>

Theming

Using Color Presets

Install the optional color themes package:

pnpm add @nova-vue/colors
// main.ts
import '@nova-vue/ui/styles.css'
import '@nova-vue/colors/blue.css' // or red, green, orange, yellow, violet, rose

Custom Theme

Override CSS variables in your stylesheet:

:root {
  --primary: oklch(0.6 0.2 250);
  --primary-foreground: oklch(0.98 0 0);
  --radius: 0.5rem;
}

Components

Layout

  • AspectRatio - Maintain consistent width-to-height ratios
  • ScrollArea - Custom scrollbar styling
  • Separator - Visual divider between content
  • Splitter - Resizable panel layouts

Forms

  • Button - Primary action element with multiple variants
  • Checkbox - Toggle selection control
  • Input - Text input field
  • InputGroup - Input with prefix/suffix addons
  • Label - Accessible form labels
  • RadioGroup - Single selection from options
  • Select - Dropdown selection
  • Slider - Range value selection
  • Switch - Toggle on/off control
  • Textarea - Multi-line text input

Data Display

  • Accordion - Collapsible content sections
  • Avatar - User profile images with fallback
  • Badge - Status indicators and labels
  • Card - Content container with header/footer
  • Table - Data tables (coming soon)
  • Tree - Hierarchical tree view

Feedback

  • Alert - Contextual feedback messages
  • Dialog - Modal dialogs
  • HoverCard - Content on hover
  • Popover - Floating content panels
  • Toast - Temporary notifications
  • Tooltip - Contextual hints

Navigation

  • ContextMenu - Right-click menus
  • DropdownMenu - Action menus
  • Menubar - Application menu bar
  • NavigationMenu - Site navigation
  • Pagination - Page navigation
  • Tabs - Tabbed content sections

Toggles

  • Toggle - Single toggle button
  • ToggleGroup - Group of toggle buttons

TypeScript

All components are fully typed. Import types as needed:

import type { ButtonProps } from '@nova-vue/ui/button'

Documentation

Visit our Storybook documentation for live examples and API reference.

License

MIT © khabzdev

Links