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

@hanui/react

v0.3.1

Published

KRDS 기반 공공 웹사이트용 React 컴포넌트 라이브러리 - Korean Government Design System (KRDS) based React component library for public web services

Readme

@hanui/react

KRDS 기반 공공 웹사이트용 React 컴포넌트 라이브러리

npm version license

한국어 | English


한국어

소개

HANUI는 KRDS(Korea Republic Design System)를 완벽히 준수하는 React 컴포넌트 라이브러리입니다. 공공기관 웹사이트 개발을 위한 접근성(WCAG 2.1 AA)과 사용성을 갖춘 컴포넌트를 제공합니다.

특징

  • 🎨 KRDS 100% 준수: 공공 웹 디자인 시스템 완벽 준수
  • ♿️ 접근성 AA 등급: WCAG 2.1 AA 준수 및 스크린 리더 지원
  • ⚡️ 즉시 사용 가능: 9개의 핵심 컴포넌트 제공
  • 🌙 다크 모드: 라이트/다크 테마 지원
  • 📦 TypeScript: 완전한 타입 지원
  • 🎯 Tree-shaking: ESM 지원으로 최적화된 번들 크기

설치

# pnpm (권장)
pnpm add @hanui/react

# npm
npm install @hanui/react

# yarn
yarn add @hanui/react

# bun
bun add @hanui/react

빠른 시작

import { Button } from '@hanui/react';
import '@hanui/react/styles.css';

function App() {
  return (
    <Button variant="primary" size="medium">
      클릭하세요
    </Button>
  );
}

프로젝트 생성 (권장)

pnpm create hanui-app my-project
cd my-project
pnpm dev

컴포넌트 목록

  • Button: 다양한 스타일의 버튼 컴포넌트
  • Input: 폼 입력 필드
  • Card: 콘텐츠 카드
  • Table: 데이터 테이블
  • Pagination: 페이지네이션
  • Breadcrumb: 네비게이션 경로
  • Modal: 모달 다이얼로그
  • Select: 드롭다운 선택
  • FileUpload: 파일 업로드

문서

전체 문서는 https://hanui.io에서 확인하세요.

브라우저 지원

  • Chrome (최신)
  • Firefox (최신)
  • Safari (최신)
  • Edge (최신)

라이선스

MIT © odada-o


English

Introduction

HANUI is a React component library that fully complies with KRDS (Korea Republic Design System). It provides accessible (WCAG 2.1 AA) and user-friendly components for Korean government websites.

Features

  • 🎨 100% KRDS Compliant: Perfect adherence to Korean public web design system
  • ♿️ AA Accessibility: WCAG 2.1 AA compliant with screen reader support
  • ⚡️ Ready to Use: 9 essential components provided
  • 🌙 Dark Mode: Light/Dark theme support
  • 📦 TypeScript: Full type support
  • 🎯 Tree-shaking: Optimized bundle size with ESM support

Installation

# pnpm (recommended)
pnpm add @hanui/react

# npm
npm install @hanui/react

# yarn
yarn add @hanui/react

# bun
bun add @hanui/react

Quick Start

import { Button } from '@hanui/react';
import '@hanui/react/styles.css';

function App() {
  return (
    <Button variant="primary" size="medium">
      Click me
    </Button>
  );
}

Create Project (Recommended)

pnpm create hanui-app my-project
cd my-project
pnpm dev

Components

  • Button: Button component with various styles
  • Input: Form input field
  • Card: Content card
  • Table: Data table
  • Pagination: Pagination component
  • Breadcrumb: Navigation breadcrumb
  • Modal: Modal dialog
  • Select: Dropdown select
  • FileUpload: File upload

Documentation

Visit https://hanui.io for full documentation.

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

License

MIT © odada-o