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 πŸ™

Β© 2025 – Pkg Stats / Ryan Hefner

hov-vue3-ui-lib

v1.0.26

Published

> πŸ“¦ This repository serves as the **demonstration and source code** for the npm package: > πŸ”— [hov-vue3-ui-lib on GitHub](https://github.com/Hov96/hov-vue3-ui-lib) > πŸ‘‰ [hov-vue3-ui-lib on npm](https://www.npmjs.com/package/hov-vue3-ui-lib)

Readme

hov-vue3-ui-lib

πŸ“¦ This repository serves as the demonstration and source code for the npm package:
πŸ”— hov-vue3-ui-lib on GitHub
πŸ‘‰ hov-vue3-ui-lib on npm



A modern, lightweight, and customizable UI component library for Vue 3.
Designed to provide developers with a simple and elegant set of ready-to-use components, focusing on speed, flexibility, and a great developer experience.


✨ Features

  • ⚑ Vue 3 Composition API – built from the ground up for performance and reusability.
  • πŸ“¦ Lightweight & Fast – minimal bundle size, no unnecessary dependencies.
  • 🎨 Customizable – easily extend and style components to match your design system.
  • πŸ“± Responsive – works beautifully on mobile and desktop.
  • πŸ§‘β€πŸ’» TypeScript Support – fully typed for a seamless development experience.

πŸš€ Installation

Make sure you are in a Vue 3 project, then install via npm:

npm i hov-vue3-ui-lib

πŸ§‘β€πŸ’» Usage

All components are tree-shakeable, so you only bundle what you use.

Example usage in a .vue file:

<template>
    <div class="app-container">
        <h1>My Vue App</h1>
        <p>Using components from <code>hov-vue3-ui-lib</code>.</p>

        <!-- Example Pill Component -->
        <h-pill size="md" color="blue">New</h-pill>

        <!-- Example Button to control a modal -->
        <button @click="showModal = true">Show Modal</button>

        <!-- Example Modal Component -->
        <h-modal v-model="showModal" size="sm">
            <template #default>
                <h2>Hello from the Modal!</h2>
                <p>This is a simple modal component.</p>
            </template>
        </h-modal>
    </div>
</template>

<script setup>
import { ref } from 'vue'
import { HPill, HModal } from 'hov-vue3-ui-lib'

const showModal = ref(false)
</script>

<style scoped>
.app-container {
    font-family: sans-serif;
    text-align: center;
    padding: 2rem;
}
</style>

πŸ› οΈ Local Development

If you want to contribute or run the project locally:

# Clone the repository
git clone https://github.com/Hov96/hov-vue3-ui-lib.git

# Navigate to the project
cd hov-vue3-ui-lib

# Install dependencies
npm install

# Start local development server
npm run dev

The project will run at http://localhost:5173.


🀝 Contributing

Contributions are always welcome! πŸŽ‰
Feel free to open an issue or submit a pull request.


πŸ’– Credits

Developed and maintained by @Hov96.