Installation
Install Script (Recommended)
Section titled “Install Script (Recommended)”The install script downloads the latest release binary to ~/.local/bin:
curl -fsSL https://raw.githubusercontent.com/zach-snell/jtk/main/install.sh | bashMake sure ~/.local/bin is in your PATH:
export PATH="$HOME/.local/bin:$PATH"Go Install
Section titled “Go Install”If you have Go installed:
go install github.com/zach-snell/jtk/cmd/jtk@latestBuild from Source
Section titled “Build from Source”git clone https://github.com/zach-snell/jtk.gitcd jtkmise run build# Binary is at bin/jtkgit clone https://github.com/zach-snell/jtk.gitcd jtkmise run build# Binary is at bin/jtkThe mise run build command runs:
go build -ldflags='-s -w' -o bin/jtk ./cmd/jtkTo build and install directly to ~/.local/bin:
mise run installOr for rapid iteration during development:
mise run linkVerify Installation
Section titled “Verify Installation”jtk --versionYou should see output like:
jtk version v0.1.0