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

vibe-branch

v0.1.1

Published

Git flow style CLI tool for managing multiple features with separate workspaces using git worktree

Readme

Vibe-Branch CLI 도구

바이브코딩(Vibe Coding) 환경에서 동일한 프로젝트의 여러 기능을 동시에 개발할 때 파일베이스를 구분하여 작업할 수 있도록 하는 Rust로 제작된 Git flow 스타일의 CLI 도구입니다.

설치

cargo install --path .

사용법

기능 브랜치 관리

# 새로운 기능 브랜치 생성 및 워크트리 설정
vibe-branch feature start LN-1234

# 작업 완료 및 정리
vibe-branch feature finish LN-1234

# 현재 워크트리 목록 확인
vibe-branch feature list

# 기존 워크트리로 전환
vibe-branch feature switch LN-1234

핫픽스 브랜치 관리

vibe-branch hotfix start HOTFIX-123
vibe-branch hotfix finish HOTFIX-123
vibe-branch hotfix list
vibe-branch hotfix switch HOTFIX-123

릴리즈 브랜치 관리

vibe-branch release start v1.0.0
vibe-branch release finish v1.0.0
vibe-branch release list
vibe-branch release switch v1.0.0

버그픽스 브랜치 관리

vibe-branch bugfix start BUG-456
vibe-branch bugfix finish BUG-456
vibe-branch bugfix list
vibe-branch bugfix switch BUG-456

주요 기능

  • 자동 베이스 브랜치 감지: main, master, develop 브랜치를 자동으로 감지
  • 워크트리 관리: Git worktree를 사용하여 브랜치별 독립적인 작업공간 제공
  • 설정 파일 자동 복사: VS Code 설정 및 프로젝트 설정 파일 자동 복사
  • 다양한 브랜치 타입 지원: feature, hotfix, release, bugfix
  • 사용자 친화적 인터페이스: 컬러풀한 출력과 대화형 프롬프트

디렉토리 구조

프로젝트-루트/
├── src/
│   └── ... (메인 프로젝트 파일들)
└── 상위-디렉토리/
    └── 프로젝트명-worktrees/
        ├── LN-1234/
        ├── HOTFIX-123/
        └── v1.0.0/

라이선스

MIT License