API Tester
프론트엔드 ↔ 백엔드 API 연동을 실제로 검증하는 테스트 스킬.
사용법
"로그인 API 테스트해줘"
"프론트-백엔드 연동 검증해줘"
"/api-tester"
워크플로우
1. 환경 감지
서버 실행 상태 확인:
# 백엔드 포트 확인
curl -s http://localhost:8000/health || curl -s http://localhost:3001/health
# 프론트엔드 포트 확인
curl -s http://localhost:3000 || curl -s http://localhost:5173
프록시 설정 확인 (vite.config.ts, next.config.js, package.json proxy 등):
# Vite 프록시
grep -r "proxy" vite.config.* 2>/dev/null
# Next.js rewrites
grep -r "rewri
[Description truncada. Veja o README completo no GitHub.]