webanalyzer
1.0.0
Web Analyzer は、TypeScript を使用して構築された Web 分析 CLI で、GUI やサードパーティのインストールを必要とせずに Web サイト情報を即座に取得できます。現在、壊れたリンクの検出、JSON と HTML のエクスポートと抽出、Web サイトのデータ集約などが可能です。
利用可能な引数:
-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"
次のコマンドを実行すると、Web サイト上の壊れたリンクを収集し、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
使用する必要がある場合があります。