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

@bwg-ui/core

v1.5.1

Published

bankwareglobal UI 라이브러리입니다.

Readme

@bwg/ui

Vite로 만든 React UI 라이브러리입니다.

설치

npm install @bwg/ui

사용법

전체 import (모든 기능)

import { BwgButton, BwgGrid, formatDate } from "@bwg/ui";

카테고리별 import

Components (Common 컴포넌트들)

import { BwgGrid, BwgButtonGroup, BwgTable } from "@bwg/ui/components";

Core (Core 컴포넌트들)

import { BwgButton, BwgInput, BwgForm } from "@bwg/ui/core";

Utils (유틸리티 함수들)

import { formatDate, validateEmail, realFormat } from "@bwg/ui/utils";

Stores (상태 관리)

import { useCodeStore, useMenuDataStore } from "@bwg/ui/stores";

Provider (컨텍스트 프로바이더)

import { CommonCodeProvider, UtilsProvider } from "@bwg/ui/provider";

Styles (스타일 파일들)

// CSS 파일 직접 import
import "@bwg/ui/styles/main.css";

// 이미지 파일 참조
import iconUrl from "@bwg/ui/styles/assets/images/icon.png";

Public (퍼블릭 파일들)

// 퍼블릭 폴더의 파일들 참조
import config from "@bwg/ui/public/config.json";

빌드

npm run build

정리

# dist 폴더만 정리
npm run clean

# 빌드 전 자동으로 dist 폴더 정리 후 빌드
npm run build

개발

npm run dev

패키징

npm run pack

패키징된 파일은 libs/ 폴더에 저장됩니다.

다른 프로젝트에서 사용하기

# 로컬에서 설치
npm install ./libs/bwg-ui-1.0.0.tgz

# 또는 직접 경로 지정
npm install C:\test_dev\core\libs\bwg-ui-1.0.0.tgz

BwgEditor 관련 (필독)

패키지 버전 정보 고정

BwgEditor 사용 시 다음 패키지들의 버전을 반드시 고정해야 합니다.

npm i -E [email protected] [email protected] [email protected]

package.json에 다음과 같이 명시되어 있어야 합니다:

{
  "dependencies": {
    "quill": "1.3.7",
    "react-quill": "2.0.0",
    "quill-image-resize-module-react": "3.0.0"
  }
}

⚠️ 주의: 소비 프로젝트에서 위 버전과 다른 버전을 사용할 경우 다음 에러가 발생할 수 있습니다:

Uncaught TypeError: moduleClass is not a constructor