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

@vifui/core

v0.6.0-alpha.14

Published

A vivid, modern Vue 3 component library built with Tailwind CSS 4.๐Ÿš€

Downloads

18

Readme

@vifui/core

๐Ÿš€ Beautiful and modern Vue UI library built with Tailwind CSS 4.0, inspired by Vuesax.

npm version License: MIT

โš ๏ธ Alpha Notice

This library is in active development and currently in alpha stage. APIs may change between releases.

Features

โœจ 10+ High-Quality Components - Built with Vue 3 Composition API
๐ŸŽจ Vuesax-Inspired Design - Beautiful, modern aesthetic
โšก Tailwind CSS 4.0 - Utility-first styling with CSS variables
โ™ฟ Accessible - Built on Reka UI primitives (Radix Vue)
๐ŸŽฏ TypeScript - Full type safety
๐ŸŒ™ Dark Mode - Built-in theme support
๐Ÿ“ฆ Tree-shakeable - Import only what you need

Installation

# npm
npm install @vifui/core @vifui/styles

# pnpm
pnpm add @vifui/core @vifui/styles

# yarn
yarn add @vifui/core @vifui/styles

Peer Dependencies

Make sure you have these installed:

npm install vue@^3.4.0 tailwindcss@^4.0.0 @iconify/vue@^4.0.0

Quick Start

1. Import Styles

In your main.js or App.vue:

import "@vifui/core/styles";

2. Use Components

<script setup>
import { Button, Badge, Card } from "@vifui/core";
</script>

<template>
  <Card>
    <CardHeader>
      <h3>Welcome to VifUI</h3>
    </CardHeader>
    <CardBody>
      <p>Beautiful components for Vue 3</p>
      <Badge color="success">New</Badge>
    </CardBody>
    <CardFooter>
      <Button color="brand">Get Started</Button>
    </CardFooter>
  </Card>
</template>

Available Components

โœ… Ready to Use

  • Button - Versatile button with variants, sizes, and colors
  • Badge - Status indicators and labels
  • Accordion - Collapsible content panels
  • Alert - Contextual feedback messages
  • Avatar - User profile images with fallbacks
  • Breadcrumb - Navigation hierarchy
  • Card - Content containers with media support
  • Checkbox - Selection controls with indeterminate state
  • Divider - Visual content separators
  • Spinner - Loading indicators

๐Ÿšง Coming Soon

  • Radio
  • Switch
  • Input
  • Select
  • Dialog
  • Dropdown
  • Tabs
  • Tooltip
  • And more...

Component Example

<script setup>
import { ref } from "vue";
import {
  AlertRoot,
  AlertIcon,
  AlertContent,
  AlertHeader,
  AlertTitle,
  AlertDescription,
  Button,
} from "@vifui/core";

const showAlert = ref(true);
</script>

<template>
  <AlertRoot v-model:visible="showAlert" variant="soft" color="success">
    <AlertIcon icon="lucide:check-circle" />
    <AlertContent>
      <AlertHeader>
        <AlertTitle>Success!</AlertTitle>
        <AlertDescription> Your changes have been saved. </AlertDescription>
      </AlertHeader>
    </AlertContent>
  </AlertRoot>
</template>

Theming

VifUI uses Tailwind CSS 4.0 with CSS variables for theming:

/* Customize theme colors */
:root {
  --primary: oklch(0.61 0.2 263.6);
  --success: oklch(0.77 0.2 145.5);
  --warning: oklch(0.82 0.18 83.7);
  --danger: oklch(0.62 0.22 10);
}

Dark mode is automatically supported through Tailwind's dark: variants.

Documentation

Full documentation coming soon at vifui.com

For now, explore our Storybook examples in the repository.

TypeScript Support

All components are built with TypeScript and include full type definitions:

import type { ButtonProps, CardRootProps } from "@vifui/core";

const buttonProps: ButtonProps = {
  color: "brand",
  size: "lg",
  variant: "solid",
};

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

Contributing

Contributions are welcome! This is an alpha project and we'd love your feedback.

  1. Fork the repository
  2. Create your feature branch
  3. Make your changes
  4. Submit a pull request

License

MIT ยฉ AbdulAzeez Olamide

Acknowledgments


Made with โค๏ธ by the VifUI team