Skip to content
kage

Installation

Install kage from Go, Homebrew, a release archive, a Linux package, or the container image, and point it at a browser.

kage is a single binary. Pick whichever channel suits you.

Go

go install github.com/tamnd/kage/cmd/kage@latest

Homebrew

brew install tamnd/tap/kage

Release archives and Linux packages

Every release attaches tar.gz archives (and a .zip for Windows) for Linux, macOS, Windows, and FreeBSD, plus .deb, .rpm, and .apk packages and a checksums.txt with a cosign signature. Download the one for your platform, extract kage, and put it on your PATH.

# Debian/Ubuntu
sudo dpkg -i kage_*_linux_amd64.deb

# Fedora/RHEL
sudo rpm -i kage_*_linux_amd64.rpm

Container

The image bundles Chromium, so it needs nothing else:

docker run -v "$PWD/out:/out" ghcr.io/tamnd/kage clone example.com

The mirror lands in ./out/example.com/ on your host.

You need a browser

kage drives a real Chrome to render pages. Outside the container image, it needs Chrome or Chromium available on the machine. It looks for a system install automatically (Google Chrome on macOS and Windows, google-chrome/chromium on Linux). To use a specific binary:

kage clone example.com --chrome /path/to/chromium
# or
export KAGE_CHROME=/path/to/chromium

If no browser is found, kage's launcher can download a private copy of Chromium on first use.

Next: the quick start.