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

bo-ui-kit

v0.3.0

Published

BO UI Kit — Figma 디자인 시스템에서 추출한 React 컴포넌트 라이브러리 (Tailwind 토큰 기반).

Readme

bo-ui-kit

Figma "BO UI Kit" 디자인 시스템에서 추출한 React UI 컴포넌트 라이브러리. Tailwind 설정 없이 바로 쓰는 프리빌드 CSS · ESM·CJS 듀얼 번들 · 타입 포함.

npm i bo-ui-kit        # peer: react, react-dom >= 18

사용법

import { Button, Field, Input } from "bo-ui-kit";
import "bo-ui-kit/styles.css";   // 디자인 토큰 + 컴포넌트 스타일 (앱 진입점에서 1회)

export default function App() {
  return (
    <Field label="이메일" required>
      <Input placeholder="[email protected]" />
    </Field>
  );
}

styles.css는 앱에서 한 번만 import 하면 됩니다. Tailwind를 설치하거나 설정할 필요가 없습니다.

특징

  • Tailwind 불필요bo-ui-kit/styles.css 한 줄에 디자인 토큰 + 컴포넌트 스타일이 모두 들어 있습니다. 전역 리셋(preflight)이 없어 기존 앱 스타일을 건드리지 않습니다.
  • ESM · CommonJSimport / require 모두 지원.
  • TypeScript — 타입 선언(.d.ts) 포함.
  • 다크 모드 — 상위 요소에 class="dark".
  • 테마 변경styles.css의 CSS 변수(--primary, --radius 등)를 앱에서 덮어쓰면 색·반경 등이 바뀝니다.
  • 폰트 — Pretendard 우선, 없으면 시스템 산세리프로 폴백.

컴포넌트

| 컴포넌트 | export | |---|---| | Button | Button | | Checkbox | Checkbox | | Input | Input | | Label | Label | | Field | Field | | Input OTP | InputOTP, InputOTPSlot, InputOTPSeparator | | Meter | Meter | | Toggle | Toggle | | Toggle Group | ToggleGroup, ToggleGroupItem | | Select | Select |

모든 컴포넌트는 className으로 스타일 합성이 가능하고 forwardRef로 ref를 전달받습니다.

예시

import { Toggle, ToggleGroup, ToggleGroupItem, Select } from "bo-ui-kit";

// 제어형 Toggle (2-state 버튼)
<Toggle pressed={on} onPressedChange={setOn}>굵게</Toggle>

// Select (드롭다운)
<Select
  options={[{ value: "apple", label: "Apple" }, { value: "banana", label: "Banana" }]}
  value={fruit}
  onValueChange={setFruit}
  placeholder="과일 선택…"
/>

// Toggle Group (세그먼티드, 단일 선택)
<ToggleGroup type="single" value={align} onValueChange={setAlign}>
  <ToggleGroupItem value="left">왼쪽</ToggleGroupItem>
  <ToggleGroupItem value="center">가운데</ToggleGroupItem>
  <ToggleGroupItem value="right">오른쪽</ToggleGroupItem>
</ToggleGroup>

요구사항

  • React 18+react, react-dom은 peer dependency.

라이선스

MIT © eromnet