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

@rencar-dev/feature-modules-public

v1.2.2

Published

Rencar feature modules - hooks, utils, and UI components

Readme

@rencar-dev/feature-modules-public

Rencar 기능 모듈 모음 - hooks, utils, UI 컴포넌트 등을 포함합니다.

설치

npm install @rencar-dev/feature-modules-public
# 또는
yarn add @rencar-dev/feature-modules-public

모듈 목록

| 모듈 | 설명 | 문서 | | -------- | ---------------------- | ------------------------------------ | | hooks | 유틸리티 React 훅 | docs/hooks.md | | presence | 실시간 접속자 프레즌스 | docs/presence.md |

// hooks 모듈 import
import { useExample } from "@rencar-dev/feature-modules-public/hooks";

// presence 모듈 import
import {
  usePresence,
  PresenceFloating,
} from "@rencar-dev/feature-modules-public/presence";
import "@rencar-dev/feature-modules-public/presence/styles.css";

개발 가이드

로컬 개발

# 개발 모드 (watch)
npm run dev

# 빌드
npm run build

다른 프로젝트에서 테스트 (npm link)

패키지를 npm에 배포하지 않고 다른 프로젝트에서 실시간으로 테스트하려면:

Step 1: 이 패키지에서 글로벌 링크 생성

npm link

Step 2: 다른 프로젝트에서 링크 연결

cd your-project
npm link @rencar-dev/feature-modules-public

Step 3: 연결 확인

npm ls @rencar-dev/feature-modules-public
# 출력에 -> 심볼릭 링크 경로가 표시되면 성공

Step 4: Next.js 프로젝트의 경우 추가 설정

next.config.js (또는 .mjs)에 다음 설정 추가:

webpack: (config, { isServer }) => {
  // 심볼릭 링크 해결을 위한 설정
  config.resolve.symlinks = false;

  // ... 기존 webpack 설정 ...
  return config;
},

Note: 설정 변경 후 .next 폴더를 삭제하고 dev 서버를 재시작하세요.

테스트 완료 후 링크 해제:

cd your-project
npm unlink @rencar-dev/feature-modules-public
npm install  # 원래 패키지로 복원

새 모듈 추가하기

  1. 폴더 생성: src/[모듈명]/ 폴더 생성

  2. Entry 파일: src/[모듈명]/index.ts 생성 및 export 정의

  3. tsup 설정: tsup.config.ts에 entry 추가

    entry: {
      "hooks/index": "src/hooks/index.ts",
      "presence/index": "src/presence/index.ts",
      "[모듈명]/index": "src/[모듈명]/index.ts",  // 추가
    },
  4. package.json exports 추가:

    "./[모듈명]": {
      "types": "./dist/[모듈명]/index.d.ts",
      "import": "./dist/[모듈명]/index.js",
      "require": "./dist/[모듈명]/index.cjs"
    }
  5. typesVersions 추가:

    "[모듈명]": ["./dist/[모듈명]/index.d.ts"]
  6. 문서 작성: docs/[모듈명].md 생성

  7. README 업데이트: 모듈 목록 테이블에 추가

배포

자동 배포 (권장):

master 브랜치에 push하면 semantic-release가 자동으로:

  1. 커밋 메시지 분석 (fix:, feat: 등)
  2. 버전 번호 결정 및 package.json 업데이트
  3. Git 태그 생성
  4. npm 배포
  5. GitHub Release 생성

| 커밋 접두사 | 버전 변경 | 예시 | | ----------- | ------------- | ------------------------ | | fix: | patch (0.0.X) | fix: 버그 수정 | | feat: | minor (0.X.0) | feat: 새 기능 추가 | | feat!: | major (X.0.0) | feat!: breaking change |

Note: chore:, docs:, style: 등은 릴리즈를 트리거하지 않습니다.

수동 배포:

npm version patch  # 또는 minor, major
npm publish

라이선스

MIT