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

@stcn52/cloud-ui

v1.7.0

Published

NextCli design system — React + TS component library with Tailwind v4.

Downloads

1,044

Readme

@stcn52/cloud-ui

npm license docs storybook

React + TypeScript component library built on Tailwind v4. 40+ components across six categories: primitives, data display, navigation, overlays, advanced controls, plus foundations. Calm, dense, operator-first visual language — cool neutrals with a single azure accent.

Install

pnpm add @stcn52/cloud-ui
# or
npm install @stcn52/cloud-ui

Peer deps: react ^18, react-dom ^18.

Quick start

import '@stcn52/cloud-ui/styles.css'
import { Button, Input, Field } from '@stcn52/cloud-ui'

export function App() {
  return (
    <div>
      <Field label="Service name">
        <Input placeholder="api-gateway" />
      </Field>
      <Button intent="primary">Deploy</Button>
    </div>
  )
}

ConfigProvider — theme, size, locale

Wrap your app (or a subtree) to control theme, density, and i18n:

import { ConfigProvider, zhCN } from '@stcn52/cloud-ui'

<ConfigProvider theme="dark" size="compact" locale={zhCN}>
  <App />
</ConfigProvider>

| Prop | Values | Default | | --------- | ------------------------------------- | ------- | | theme | 'light' | 'dark' | light | | size | 'compact' | 'normal' | 'comfortable' | normal | | locale | Locale object (bundled: en, zhCN) | en | | target | 'wrapper' | 'body' | wrapper |

The provider writes data-theme and data-size to its wrapping element (or document.body if target='body'). All components respond automatically via CSS variables.

Custom locale

The bundled locales cover UI strings used by Pagination, CommandPalette, CopyField, Banner, Toast, Pill, TagInput, and DatePicker. You can supply your own:

import type { Locale } from '@stcn52/cloud-ui'

const ja: Locale = {
  code: 'ja',
  pagination: { prev: '‹ 前へ', next: '次へ ›' },
  commandPalette: { placeholder: '検索…', empty: '該当なし', escape: 'esc' },
  // …
}

Available components

01 · Foundations — Color, Typography, Spacing, Radius, Elevation (docs only, no runtime components).

02 · PrimitivesButton, ButtonGroup, Input, InputGroup, Affix, Field, Checkbox, CheckRow, Radio, RadioRow, Switch, Select, Textarea, Pill, Dot, Badge, Avatar, AvatarStack, Kbd, Form, FormField, useForm, StepForm, FormSteps.

03 · Data displayCard, CardHead, CardFoot, Kpi, Delta, Table, Progress, Ring, Skeleton, Pipeline, PipeStep, LogLine, Donut, Gauge.

04 · NavigationTabs, Tab, Segmented, Breadcrumbs, Breadcrumb, Pagination.

05 · OverlaysBanner, Tooltip, Toast, ToastStack, Empty, Dialog, DialogHead, DialogBody, DialogFoot, Drawer, DrawerHead, DrawerBody, DrawerFoot, Popover, PopoverItem, PopoverSeparator, CommandPalette.

06 · AdvancedDropdown, DropdownItem, DropdownGroup, DropdownSeparator, DropdownSearch, Tree, Cascader, DatePicker, TagInput, CopyField, Accordion, AccordionItem, PromptInput, JsonViewer, NotificationCenter, QueryBuilder, MentionPopover, Transfer.

11 · TablesNxTable (enterprise data table: resize/pin columns, sort, per-column filters, search, pagination, selection + bulk actions, expandable rows, density, column toggle, CSV export, optional localStorage persistence).

Theming via CSS variables

Every token is a CSS variable — override in your own stylesheet:

:root {
  --color-accent:      oklch(0.65 0.16 140);  /* switch to green */
  --color-accent-weak: oklch(0.95 0.04 140);
  --color-accent-ink:  oklch(0.36 0.10 140);
}

Full token list: run Storybook (pnpm dev) → 01 · Foundations/Overview.

Development

pnpm install
pnpm dev              # Storybook on :6006
pnpm build            # dist/{index.js, index.cjs, index.d.ts, styles.css}
pnpm build-storybook  # static Storybook in storybook-static/
pnpm typecheck        # tsc -b && stories typecheck

License

MIT