webanalyzer
1.0.0
Web Analyzer 是使用 TypeScript 构建的 Web 分析 CLI,无需 GUI 或任何类型的第三方安装即可立即检索网站信息。目前允许损坏链接检测、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 的安装方式,您可能需要在上面的示例中将npx
与 CLI 实用程序一起使用。