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/tailadminx

v3.0.1

Published

TailAdminX React admin dashboard and UI library

Downloads

33

Readme

TailAdminX

TailAdminX is a React admin dashboard and UI library: layouts, charts, tables, forms, and supporting components, built with React 19, TypeScript, and Tailwind CSS v4. Use it as a Vite demo app in this repo or consume the published package in your own application.

Stack

  • React 19
  • TypeScript
  • Tailwind CSS v4
  • Vite

Development

Prerequisites: Node.js 18 or later (20+ recommended).

Install dependencies and start the dev server:

npm install
npm run dev

Build the demo application:

npm run build

Library build

Produce the distributable library under dist-lib:

npm run build:lib

Dry-run the package contents:

npm run package:check

Using the package

Import styles once in your app entry:

import "@cloudvisionapps/tailadminx/styles.css";

Basic component import:

import { Button, Modal, InputField } from "@cloudvisionapps/tailadminx";

Configurable layout example (custom logo, links, and menu items):

import {
  AppLayout,
  type SidebarNavItem,
  defaultMainMenuItems,
  defaultSecondaryMenuItems,
} from "@cloudvisionapps/tailadminx";

const mainMenuItems: SidebarNavItem[] = [
  ...defaultMainMenuItems,
  {
    name: "Docs",
    path: "/docs",
    icon: <span>D</span>,
  },
];

export default function DashboardShell() {
  return (
    <AppLayout
      headerProps={{
        brandLink: "/dashboard",
        brand: <span>My Admin</span>,
        searchPlaceholder: "Search users, reports, settings...",
      }}
      sidebarProps={{
        mainMenuItems,
        secondaryMenuItems: defaultSecondaryMenuItems,
        brandLink: "/dashboard",
        brandFull: <img src="/logo-full.svg" alt="My Admin" />,
        brandCompact: <img src="/logo-mini.svg" alt="MA" />,
      }}
    />
  );
}

Tailwind in consumer apps

By default, importing the package stylesheet is enough:

import "@cloudvisionapps/tailadminx/styles.css";

If your app runs its own Tailwind build and needs to scan this package’s markup for utilities:

Tailwind v4 — add a @source directive in your app stylesheet:

@import "tailwindcss";
@source "../node_modules/@cloudvisionapps/tailadminx/dist-lib/**/*.{js,cjs}";

Tailwind v3 — include the package in content in your Tailwind config:

export default {
  content: [
    "./src/**/*.{js,ts,jsx,tsx}",
    "./node_modules/@cloudvisionapps/tailadminx/dist-lib/**/*.{js,cjs}",
  ],
};

The package ships compiled CSS (@cloudvisionapps/tailadminx/styles.css). Use the discovery setup only when your pipeline must scan package files for class names.

Publishing

  1. Bump the version in package.json.
  2. Create and push a version tag (pattern v*.*.*), or run the release workflow manually with a tag input.

The release job installs dependencies, runs npm run build and npm run build:lib, publishes the package, and attaches build archives to a GitHub release. Full steps and permissions are defined in .github/workflows/release.yml.

prepublishOnly runs npm run build:lib before a local npm publish if you publish by hand.

License

MIT