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

vbss-ui

v0.3.2

Published

> ⚠️ **LEGACY VERSION WARNING** ⚠️ > > This is a legacy/deprecated version of vbss-ui. Please use the latest version instead: > > - GitHub Repository: [https://github.com/vbss-io/vbss-ui](https://github.com/vbss-io/vbss-ui) > - Documentation: [https:

Readme

vbss-ui Library

⚠️ LEGACY VERSION WARNING ⚠️

This is a legacy/deprecated version of vbss-ui. Please use the latest version instead:

The new version includes:

  • Improved components with better TypeScript support
  • Modular package structure (each component is a separate package)
  • More features and better performance

Instead of installing all components at once, you can now install only the components you need:

npm install @vbss-ui/button @vbss-ui/input @vbss-ui/table ...
# or
yarn add @vbss-ui/button @vbss-ui/input @vbss-ui/table ...

Installation

First, you need to install the vbss-ui library. You can do this using either npm or yarn.

Using npm

Run the following command in your project directory:

npm install vbss-ui

Using yarn

Alternatively, if you prefer yarn, run:

yarn add vbss-ui

Importing the Styles

To use the vbss-ui components, you need to import the styles. Add the following line to your main file (e.g., index.js or main.js):

import "vbss-ui/dist/style.css";

Using the Components

Now you are ready to use the vbss-ui components. Let's start with the Button component. First, import the Button component in your file:

import { Button } from "vbss-ui";

Then, you can use the Button component in your JSX/TSX code:

function App() {
  return (
    <div>
      <Button>Click Me</Button>
    </div>
  );
}

export default App;

Customizing Colors (Optional)

If you want to customize the colors used in the vbss-ui components, you can create a custom CSS file with your desired color scheme. Create a .css file (e.g., custom-colors.css) and define your colors using HSL format as follows:

:root {
  --background: 0 0% 100%;
  --text: 0 0% 0%;
  --primary: 117 100% 47%;
  --secondary: 248 53% 58%;
  --highlight: 271 76% 53%;
}

After creating your custom colors file, import it into your main file:

import "./custom-colors.css";

This will override the default colors with your custom colors.

You are now ready to use the vbss-ui components in your project

More

For more information, please visit the repository and run Storybook to see the components in action. Storybook provides an interactive way to explore and test the components.

To start Storybook, navigate to the repository directory and run:

npm run storybook

or

yarn storybook

Refs: