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

@yadoran-2025/booong-design-system

v2.1.0

Published

BOOONG shared design tokens, base styles, and legacy-compatible UI components. v2.0 — Atomic/Semantic 2-layer tokens, projector-optimized contrast, component states.

Readme

BOOONG Design System

Shared BOOONG design tokens, base styles, and legacy-compatible UI components.

Version 2 adds Atomic/Semantic color tokens, projector-friendly text contrast, motion tokens, and new feedback/state components while preserving legacy aliases.

Install

내 프로젝트에 적용하는 법

BOOONG 디자인시스템을 쓰고 싶은 프로젝트에서는 먼저 패키지를 설치하세요.

npm install @yadoran-2025/booong-design-system

React, Vite, Next.js 같은 npm 기반 프로젝트라면 앱의 전역 진입 파일에서 CSS를 한 번만 import하면 됩니다.

import "@yadoran-2025/booong-design-system/dist/booong.css";

정적 HTML 프로젝트라면 <head> 안에 아래 CSS 링크를 추가하면 됩니다.

<link rel="stylesheet" href="https://yadoran-2025.github.io/booong-design-system/releases/v2.0.0/booong.css">

그 다음 프로젝트 CSS에서는 BOOONG 토큰과 컴포넌트 클래스를 그대로 사용하세요. 예를 들어 색상은 --brand, --color-primary, --text-muted 같은 변수를 쓰고, 버튼은 .btn .btn--primary, 입력 필드는 .field, .field__input 같은 클래스를 붙이면 됩니다.

프로젝트마다 필요한 레이아웃이나 화면별 스타일은 별도 CSS 파일에 작성하되, 브랜드 색상, 폰트, spacing scale, radius 같은 디자인시스템 값은 다시 정의하지 않는 것을 권장합니다.

Local Build

npm run build

The build writes:

  • dist/booong.css for npm consumers
  • docs/releases/v2.0.0/booong.css for GitHub Pages consumers

Compatibility

Version 2 changes some visual defaults (--text-muted, heading hierarchy, strong color, and spacing values), but keeps legacy token names such as --brand, --text, and --case-bg as aliases for existing projects.