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

@buzzle/bds

v0.2.4

Published

Buzzle Design System (based on MUI)

Readme

BDS (Buzzle Design System)

⚠️ 주의사항: BDS는 사이드 프로젝트로 개발 중인 실험적 디자인 시스템 이에요. 실제 서비스 환경에 적용하기에는 적합하지 않으며, API가 예고 없이 변경될 수 있어요. 학습 및 실험 목적으로만 사용해주세요.

핵심 특징

🎨 MUI 확장 컴포넌트: Material UI를 기반으로 Buzzle 브랜드 아이덴티티에 맞게 확장된 컴포넌트 제공

🧩 모듈화된 설계: 필요한 컴포넌트만 선택적으로 가져와 사용 가능한 구조

📱 반응형 디자인: 모든 화면 크기에 최적화된 컴포넌트 제공

🔍 접근성 중심: WCAG 지침을 준수하는 접근성 높은 컴포넌트

📦 타입스크립트 지원: 완전한 타입 정의로 개발 경험 향상

설치 방법

# npm 사용
npm install @buzzle/bds @mui/material @emotion/react @emotion/styled

# yarn 사용
yarn add @buzzle/bds @mui/material @emotion/react @emotion/styled

# pnpm 사용
pnpm add @buzzle/bds @mui/material @emotion/react @emotion/styled

# bun 사용
bun add @buzzle/bds @mui/material @emotion/react @emotion/styled

사용 예시

다음은 BDS를 사용하는 기본적인 예제에요.
별도의 Provider.tsx 파일을 만들어서 사용해도 좋아요.

import { ThemeProvider } from '@mui/material/styles';
import { CssBaseline, Container } from '@mui/material';
import { bdsTheme, Button, Text, Input } from '@buzzle/bds';

const App = () => {
	return (
		<ThemeProvider theme={bdsTheme}>
			<CssBaseline />
			<Container>
				<Text variant="h1" gradient>
					Buzzle Design System
				</Text>
				<Input label="이메일" placeholder="이메일을 입력해주세요" />
				<Button variant="contained">시작하기</Button>
			</Container>
		</ThemeProvider>
	);
};

기술 스택

  • React: 17/18/19 버전 지원
  • Material UI: MUI 기반 컴포넌트 확장
  • Emotion: CSS-in-JS 스타일링
  • TypeScript: 정적 타입 시스템
  • Vite: 빠른 빌드 및 개발 환경
  • Storybook: 컴포넌트 문서화 및 시각화

프로젝트 목표

BDS는 다음과 같은 목표를 가지고 개발되었어요:

  • 아토믹 디자인 시스템 구축
  • 높은 DX 컴포넌트

기여하기

BDS는 오픈소스 프로젝트로, 모든 형태의 기여를 환영합니다:

링크

레포지토리 : https://github.com/teamBuzzle/bds
문서 : https://teambuzzle.github.io/bds
npm : https://www.npmjs.com/package/@buzzle/bds

라이선스

MIT 라이선스 - 상업용 및 개인 프로젝트 모두 자유롭게 사용 가능
MUI 라이센스 - https://github.com/mui/material-ui/blob/master/LICENSE