Skip to main content

Logget

Extract browser logs and network data from web pages

A command-line tool that uses an embedded Chromium browser to capture console logs and network requests. Perfect for debugging, monitoring, and analyzing web applications.

Features

Console Logs

Capture all console messages including log, error, warn, and info

Network Monitoring

Track HTTP requests with headers, status codes, and detailed timing metrics

Multiple Formats

Output data in JSON, CSV, or HAR format for easy parsing and analysis

Cross-Platform

Works on Windows, Linux, and macOS with embedded Chromium

Real-time Streaming

Stream logs and network requests in real-time with follow mode

Advanced Filtering

Filter by status code, domain, MIME type, size, and resource type

Quick Start

Get started in seconds with these examples

# Show console logs
logget --logs https://example.com

# Show network requests
logget --network https://example.com

# Show both logs and network data
logget --logs --network https://example.com

# Output in JSON format
logget --logs --network --json https://example.com

# Stream logs in real-time
logget -f --logs https://example.com
Read the documentation →