Runt is a heavily work-in-progress terminal-based web browser. Currently, it is capable of fetching a single HTML page from a HTTP or HTTPS URL, or the local file system.
# Fetch and display the default page (currently https://www.rust-lang.org/)
cargo run
# Fetch and display a given URL
cargo run -- 'https://www.google.com/'
# Open a local HTML file for display
cargo run -- '/path/to/file.html'
cargo run -- 'file:///path/to/file.html'
To exit, press q
.