Fluent Commerce Logo
Docs

Getting Started with the Fluent CLI

How-to Guide

Authors:

Lesley Dean, Marco Heuer

Changed on:

14 Sept 2026

Key Points

  • Log in as an Admin and confirm you have permission to install software.
  • Install `Node.js` LTS (`(>=20.0.0 <25.0.0 for version 2.2.2+; >=20.0.0 <23.0.0 for earlier versions`) and `npm` (`>=10.5.0`), then verify both are on your path. 
  • Install the Fluent CLI globally
    `npm install -g https://downloads.fluentcommerce.com/v1.0.0/fluent-cli/release/latest`
  • Confirm installation with `fluent changelog list` and explore commands with `fluent --help`

Steps

Step arrow right iconOverview

This page will guide you through preparing your local environment, and installing the Fluent CLI.

Step arrow right iconPrerequisites

Before installing the Fluent CLI, there are few prerequisites required:
  • Make sure you are logged in with an Admin User on your local machine and that you have permissions to install new software.
  • Install the LTS version of Node.js (includes npm): Node.js — Download Node.js®.
    Note: The Fluent CLI can support Node versions: `>=20.0.0 <23.0.0` (or `>=20.0.0 <25.0.0` for version 2.2.2+) and Npm versions: `>=10.5.0`.

Step arrow right iconInstallation

  • Open a Terminal window
  • Make sure you have the correct versions of Node and npm activated on your path:
    • Run `node --version` and verify the version is greater than or equal to 20.0.0 and less than 22.0.0  (or less than 25.0.0 for version 2.2.2+)
    • Run `npm --version` and verify the version is greater than or equal to 10.5.0
  • Install the Fluent CLI globally: `npm install -g https://downloads.fluentcommerce.com/v1.0.0/fluent-cli/release/latest`
    • Note: the `v1.0.0` in the URL is the version of the API. You're still downloading the `latest` of the Fluent CLI!
  • Once installed, verify that the Fluent CLI has installed and is active on the path: `fluent changelog list`
  • Optionally, run the help command to view available commands: `fluent --help`

Step arrow right iconNext Steps