---
type: snippet
tags: [yalc, npm, local-development]
status: release
ctime: 2025-12-26
mtime: 2025-12-26
---

yalc - 로컬 Node 모듈을 다른 프로젝트에서 바로 테스트. npm link보다 문제 적음 (파일 복사 방식).

```bash
npm i -g yalc

# 패키지에서
yalc publish          # ~/.yalc에 저장
yalc push             # 연결된 모든 프로젝트에 반영
yalc publish --push   # 둘 다

# 앱에서
yalc add my-module
yalc remove my-module && npm install  # 정리
```

watch 모드: `"dev": "tsup src/index.ts --watch --onSuccess 'yalc push'"`

`.gitignore`: `.yalc`, `yalc.lock`
