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

@hua-labs/hua

v1.0.3

Published

HUA - Ship UX faster: UI + motion + i18n, pre-wired. A framework for React product teams.

Downloads

293

Readme

@hua-labs/hua

Batteries-included framework for React product teams. Unifies UI components, animation hooks, internationalization, state management, and utilities into a single dependency with automatic provider setup for Next.js.

npm version npm downloads license TypeScript React

Features

  • Pre-wired — UI, motion, i18n, state configured and ready to use
  • Framework layer — Next.js-optimized with defineConfig and automatic providers
  • Accessibility — WCAG 2.1 compliant utilities (focus management, skip-to-content)
  • Loading UX — Built-in delayed loading, suspense wrappers
  • Error handling — ErrorBoundary built into HuaPage
  • White-labeling — SSR-compatible CSS variable injection via branding config
  • GEO support — Generative Engine Optimization for AI search engines

Installation

pnpm add @hua-labs/hua

Peer dependencies: next >=13.0.0, react >=19.0.0, react-dom >=19.0.0, server-only ^0.0.1

Quick Start

// hua.config.ts
import { defineConfig } from '@hua-labs/hua/framework/config';

export default defineConfig({
  preset: 'product',
  i18n: {
    defaultLanguage: 'ko',
    supportedLanguages: ['ko', 'en'],
    namespaces: ['common'],
    translationLoader: 'api',
    translationApiPath: '/api/translations',
  },
});

// app/layout.tsx
import { HuaProvider } from '@hua-labs/hua/framework';

export default function RootLayout({ children }) {
  return (
    <html lang="ko">
      <body>
        <HuaProvider>{children}</HuaProvider>
      </body>
    </html>
  );
}

API

| Export | Type | Description | |--------|------|-------------| | Button | component | Branded button — auto-applies branding colors when configured | | Card | component | Branded card — auto-applies branding colors when configured | | defineConfig | function | Define hua configuration with presets (product, landing, docs) | | HuaProvider | component | Root layout provider — auto-wires theme, i18n, motion, branding | | HuaPage | component | Page wrapper with ErrorBoundary and loading states |

Documentation

Full Documentation

Architecture

@hua-labs/hua is a meta-framework that re-exports from sub-packages and adds a framework layer on top.

@hua-labs/hua
├── /framework     ← HuaProvider, defineConfig, HuaPage (framework-only)
├── /ui             ← re-export @hua-labs/ui (100+ components)
├── /motion          ← re-export @hua-labs/motion-core
├── /i18n            ← re-export @hua-labs/i18n-core
├── /state           ← re-export @hua-labs/state
├── /formatters      ← re-export @hua-labs/i18n-formatters
├── /hooks           ← re-export @hua-labs/hooks
├── /utils           ← re-export @hua-labs/utils
└── /loaders         ← re-export @hua-labs/i18n-loaders

The main entry (@hua-labs/hua) exports everything flat for convenience. Use subpath imports for tree-shaking.

Configuration Presets

| Preset | Use Case | Includes | |--------|----------|----------| | product | Full-featured product app | UI + i18n + state + motion + branding | | landing | Marketing/landing pages | UI + motion + GEO | | docs | Documentation sites | UI + i18n + code blocks |

// Minimal config — preset handles defaults
export default defineConfig({ preset: 'product' });

Related Packages

License

MIT — HUA Labs