Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1 KB

File metadata and controls

44 lines (30 loc) · 1 KB

⭐   the project to show your appreciation. ↗️

Terminal based Web Browser

Features:

  1. No Javascript support
  2. Experimental Image Rendering support
  3. Defaults to Reading Mode
  4. Great for Reading Documentation and Newspapers
  5. Formats and displays HTML (via Standard In or URL)

Screenshot of vox.com (2026-02-14)

vox.com homepage

Page source

You can open any file by piping the contents through standard in:

cat file.txt | browser

or

browser < input_file.html

Alternatively, you can pass the --html -f flags to a url.

page source

Download Pre-built binaries

https://github.com/romance-dev/browser/releases

or

GOOS=windows GOARCH=amd64  go build -trimpath -ldflags="-s -w" .
GOOS=linux GOARCH=amd64  go build -trimpath -ldflags="-s -w" .
GOOS=darwin GOARCH=amd64  go build -trimpath -ldflags="-s -w" .
GOOS=darwin GOARCH=arm64  go build -trimpath -ldflags="-s -w" .