Installation
The revenexx CLI is a command-line tool for working with Revenue Cloud. It ships as an npm package and as a Homebrew formula, and every release also attaches a self-contained binary per platform — so you can install it whether or not you have Node set up.
Install with npm
If you have npm, install the CLI globally:
npm install -g @revenexx/cli
Install with Homebrew
On macOS and Linux, install from the CLI's own tap. The formula installs the prebuilt binary for your platform, so no Node runtime is required:
brew install revenexx-sdks/cli/revenexx
The tap lives in revenexx-sdks/homebrew-cli. Homebrew strips the homebrew- prefix, which is why the formula is addressed as revenexx-sdks/cli/revenexx. If you prefer, add the tap once and then use the plain formula name:
brew tap revenexx-sdks/cli
brew install revenexx
Download a binary
Every release attaches a single-file binary per platform, so you can install without npm or Homebrew — on Windows, this or npm are the options. Pick the asset matching your platform from the latest release: revenexx-darwin-arm64, revenexx-darwin-x64, revenexx-linux-arm64, revenexx-linux-x64, revenexx-win-x64.exe or revenexx-win-arm64.exe.
curl -fsSL -o revenexx https://github.com/revenexx-sdks/cli/releases/latest/download/revenexx-darwin-arm64
chmod +x revenexx
sudo mv revenexx /usr/local/bin/revenexx
Invoke-WebRequest -Uri https://github.com/revenexx-sdks/cli/releases/latest/download/revenexx-win-x64.exe -OutFile revenexx.exe
Then move revenexx.exe somewhere on your PATH.
Verify the install
Check the version to confirm the CLI is on your PATH:
revenexx -v
Update
If you installed with npm, update by reinstalling the latest version:
npm install -g @revenexx/cli@latest
With Homebrew, refresh the tap first — otherwise Homebrew still knows only the formula revision from install time and reports nothing to upgrade:
brew update && brew upgrade revenexx-sdks/cli/revenexx
The CLI can also update itself. revenexx update detects how it was installed and upgrades in place; pass --manual to print the upgrade steps instead of running them.
revenexx update
Uninstall
Remove an npm install with:
npm uninstall -g @revenexx/cli
Remove a Homebrew install with:
brew uninstall revenexx
brew untap revenexx-sdks/cli
The CLI stores its configuration in ~/.revenexx. To clear saved credentials and settings, remove that directory.