Installation
Install tgrs on your system using Homebrew, npm, curl, or wget.
Homebrew (macOS)
One-Line Install
The fastest way to install tgrs. This command adds the Tigrister tap and installs the binary in one step.
brew install tigrister/tap/tgrs
Step-by-Step Install
If you prefer, you can add the tap first and install separately.
# Add the Tigrister tap
brew tap tigrister/tap
# Install tgrs
brew install tgrs
Verify Installation
After installation, verify that tgrs is available.
tgrs --version
# tgrs 1.0.0
npm
Global Install
Install tgrs globally via npm. Requires Node.js.
npm install -g @tigrister/tgrs
Run Without Installing
Use npx to run tgrs without a global install. Great for CI/CD pipelines.
npx @tigrister/tgrs GET https://api.example.com
curl / wget
curl
Download and install the latest binary with a single command.
curl -sSL https://cli.tigrister.com | sh
wget
wget -qO- https://cli.tigrister.com | sh
Upgrading
Upgrade via Homebrew
brew upgrade tgrs
Upgrade via tgrs
tgrs has a built-in update command that downloads and replaces the binary in place.
tgrs update
# Updating tgrs: v1.0.0 → v1.0.1
# Updated successfully!
Updated tgrs: v1.0.0 → v1.0.1.Platform Support
tgrs is currently available on macOS and Linux via Homebrew, npm, curl, and wget. Support for Windows is coming soon.