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

@verareyou/mono

v0.0.6

Published

Mono, The Minimalist React UI library

Downloads

14

Readme

Mono - Minimal UI Component Library for React and Tailwind CSS

Mono Logo

Mono is a lightweight and minimal UI component library designed to make building beautiful and functional user interfaces with React and Tailwind CSS a breeze. It offers a collection of customizable and ready-to-use components that follow a simple and consistent design philosophy. Mono is currently in active development and will soon be released for public use.

Features

  • Minimalistic Design: Mono follows a clean and minimal design approach to ensure your UI remains clutter-free.

  • Tailwind CSS Integration: Built with Tailwind CSS, Mono components are highly customizable, allowing you to match your application's unique style.

  • React Components: Mono provides a set of reusable React components for common UI elements, making it easy to integrate them into your project.

  • Responsive: All components are designed to be fully responsive, ensuring a seamless user experience across various devices and screen sizes.

  • Easy to Customize: You can easily customize Mono components using Tailwind CSS classes or by extending the default styles.

  • Developer-Friendly: Mono is designed with developers in mind, offering clear documentation and straightforward usage.

Getting Started

To get started with Mono, follow these simple steps:

  1. Install the library via npm or yarn:

    npm install @verareyou/mono
    # or
    yarn add @verareyou/mono
  2. Import the components you want to use:

    import { Button, Box } from '@verareyou/mono';
  3. Start using the components in your React application:

    <Box
         rounded='xl'
         p='sm'
       >
         <Button
           theme="dark"
           onClick={() => setCount((count) => count + 1)}>
           count is: {count}
         </Button>
    
         <Box
           p='sm'
           rounded='xl'
           m='sm'
           gap='10px'
           text='md'
         >
           <Button
             borderWidth='sm'
             rounded='full'
             theme="light"
             bg='red'
             text='md'
             color='white'
             onClick={() => setCount((count) => count - 1)}>
             count is: {count}
           </Button>
           <Button
             theme="light"
             onClick={() => setCount((count) => count - 1)}>
             count is: {count}
           </Button>
           <Button
             theme="light"
             onClick={() => setCount((count) => count - 1)}>
             count is: {count}
           </Button>
         </Box>
         <Box>
           <TextField
             onChange={() => setCount((count) => count - 1)}
           />
         </Box>
       </Box>

Documentation

The documentation for Mono is currently under development and will be available soon.

Contributing

Mono is currently in active development and is not yet ready for public use. However, if you would like to contribute to the project, please feel free to submit a pull request or open an issue.

License

Mono is licensed under the [MIT License]

[mit license]:

Mono - Minimal UI Component Library