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

@cloudvisionapps/react-ui

v1.0.3

Published

A comprehensive React UI component library

Readme

@cloudvisionapps/react-ui

npm version License: MIT

A React component library built with TypeScript and Tailwind CSS. Use it to build consistent UIs across applications with minimal setup.

Screenshots

Screenshot 1

Requirements

  • React 18+
  • React DOM 18+

Installation

npm install @cloudvisionapps/react-ui
yarn add @cloudvisionapps/react-ui
pnpm add @cloudvisionapps/react-ui

Quick Start

Import components and include the library styles in your app (e.g. in your root layout or main.tsx):

import { Button, Card, Input } from '@cloudvisionapps/react-ui';
import '@cloudvisionapps/react-ui/styles';

function App() {
  return (
    <Card title="Welcome" footer={<Button>Submit</Button>}>
      <Input label="Email" placeholder="Enter your email" />
      <Button variant="primary">Submit</Button>
    </Card>
  );
}

Components

| Component | Description | |-----------|-------------| | Accordion | Collapsible content sections | | Alert | Inline messages and notifications | | Avatar | User or entity image/initials | | Badge | Labels and status indicators | | Breadcrumb | Navigation path | | Button | Actions with variants and loading state | | Card | Container with optional title and footer | | Checkbox | Boolean form control | | Divider | Visual separator | | EmptyState | Placeholder when there is no content | | Footer | Page footer with links and columns | | Hero | Hero / landing section | | Input | Text input with label and validation | | Link | Styled link | | Modal | Dialog overlay | | Navigation | Top or side navigation | | Pagination | Page navigation controls | | Progress | Progress bar | | Radio | Single choice from a group | | Select | Dropdown selection | | Skeleton | Loading placeholder | | Spinner | Loading indicator | | Switch | Toggle control | | Table | Table with TableHead, TableBody, TableRow, TableHeader, TableCell | | Tabs | Tabbed content (Tabs, TabPanel) | | Textarea | Multi-line text input | | Tooltip | Hover/popover hint |

All components are typed (TypeScript) and accept standard HTML attributes where relevant.

Example: Button

<Button variant="primary" size="medium" isLoading={false}>
  Save
</Button>
  • variant: 'primary' | 'secondary' | 'danger' | 'outline'
  • size: 'small' | 'medium' | 'large'
  • isLoading: boolean

Example: Input

<Input
  label="Email"
  placeholder="[email protected]"
  error="Invalid email"
  helperText="We never share your email."
/>

Example: Table

import { Table, TableHead, TableBody, TableRow, TableHeader, TableCell } from '@cloudvisionapps/react-ui';

<Table>
  <TableHead>
    <TableRow>
      <TableHeader>Name</TableHeader>
      <TableHeader>Status</TableHeader>
    </TableRow>
  </TableHead>
  <TableBody>
    <TableRow>
      <TableCell>Alice</TableCell>
      <TableCell>Active</TableCell>
    </TableRow>
  </TableBody>
</Table>

Development

# Install dependencies
npm install

# Build the library
npm run build

# Type check
npm run type-check

# Run component preview (dev server)
npm run preview:dev

The preview app runs at http://localhost:3000 so you can try all components and variants.

Watch mode (rebuild on change):

npm run dev

Preview production build:

npm run build && npm run preview

Using the library in another project (local)

From this repo:

npm link

From your app:

npm link @cloudvisionapps/react-ui

Publishing

Bump the version in package.json, then build and publish. With the GitHub workflow, push to trigger publish using the NPM_TOKEN secret.

Manual publish:

npm run build
npm publish

License

MIT