webanalyzer
1.0.0
Web analyzer는 GUI나 타사 설치 없이 웹사이트 정보를 즉시 검색할 수 있도록 TypeScript를 사용하여 구축된 웹 분석 CLI입니다. 현재 끊어진 링크 감지, JSON 및 HTML 내보내기 및 추출, 웹사이트 데이터 집계 등을 허용합니다.
사용 가능한 인수:
-h, --help "Help menu"
-u, --url <value> "Provide a URL for parsing broken links and collecting web info"
-f, --file "Save website data to a file in JSON format (default: report.json)"
-o, --output "Specify the name of the JSON or HTML file for extracted data (don't specify an extension)"
-v, --verbose "Output link information in a file and display the data in terminal"
-d, --debug "Debug logs (more in-depth information about the domain/tools being used)"
-w, --web "Saves website data to a file in HTML format (default: report.html)"
-b, --broken "Scans provided URL for broken links, returning a status code"
이 명령을 실행하여 웹 사이트에서 끊어진 링크를 수집하고 이를 JSON 파일로 내보낼 수 있습니다.
webanalyzer -u https://example.com -f -o example_report -b
대신 HTML 소스 코드를 빠르게 내보내야 하는 경우 위와 동일한 명령을 실행할 수 있지만 -w
플래그를 포함하면 됩니다.
webanalyzer -u https://example.com -f -o example_report -b -w
참고: 시스템 및 webanalyzer 설치 방법에 따라 위 예의 CLI 유틸리티와 함께 npx
사용해야 할 수도 있습니다.