Files
chpark 6cd3bc218f feat: Puppeteer 헤드리스 브라우저 크롤링 지원
- JS 렌더링 대기 (wait ms 설정)
- 로그인 자동화 (아이디/비번 입력 → 버튼 클릭)
- 비주얼 매퍼에 JS렌더링 체크박스 + 로그인 설정 UI
- Dockerfile에 Chromium 설치
- parse_rules.browser=true 시 Puppeteer 사용
2026-03-31 11:43:27 +09:00

25 lines
577 B
JSON

{
"name": "crawl-manager",
"version": "1.0.0",
"description": "크롤링 관리 솔루션",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "node --watch src/app.js",
"migrate": "node src/migrations/run.js"
},
"dependencies": {
"express": "^4.21.0",
"pg": "^8.13.0",
"cheerio": "^1.0.0",
"node-cron": "^3.0.3",
"axios": "^1.7.0",
"ejs": "^3.1.10",
"dotenv": "^16.4.0",
"https-proxy-agent": "^7.0.0",
"cookie-parser": "^1.4.6",
"iconv-lite": "^0.6.3",
"puppeteer-core": "^22.0.0"
}
}