Installation

Install the revenexx CLI with npm or Homebrew, or download a binary from the release page, then verify the install and keep it up to date.

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:

Shell
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:

Shell
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:

Shell
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.

macOS / Linux
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
Windows
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:

Shell
revenexx -v

Update

If you installed with npm, update by reinstalling the latest version:

Shell
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:

Shell
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.

Shell
revenexx update

Uninstall

Remove an npm install with:

Shell
npm uninstall -g @revenexx/cli

Remove a Homebrew install with:

Shell
brew uninstall revenexx
brew untap revenexx-sdks/cli

The CLI stores its configuration in ~/.revenexx. To clear saved credentials and settings, remove that directory.

What's next

Was this page helpful?