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 實用程式一起使用。