Skip to content

Install Prerequisites

This page covers the software required for Claude Code: Node.js and Git.

We recommend the latest LTS (Long-Term Support) release. ApexOne requires Node.js 22.x or later.

  1. Visit nodejs.org.
  2. Download the latest LTS installer.
  3. Run the downloaded .msi file and follow the installation wizard.
  4. Restart your terminal before continuing.

Open a terminal and run:

Terminal window
node --version
npm --version

Example output:

v22.14.0
10.9.2

If both commands return version numbers, Node.js has been installed successfully.

Git is a distributed version control system used by Claude Code and most modern development workflows.

  1. Visit git-scm.com/download/win.
  2. Download and run the latest installer.
  3. During setup, we recommend:
    • Git from the command line and also from 3rd-party software
    • Use Windows’ default console window
  4. Complete the installation using the default settings.
Terminal window
git --version

Example output:

git version 2.43.0

If a version number is displayed, Git has been installed successfully.

After installation, configure your Git identity:

Terminal window
git config --global user.name "Your Name"
git config --global user.email "you@example.com"

To verify your configuration:

Terminal window
git config --list

npm command not found

  • Windows — verify that the Node.js installation directory has been added to your system PATH.

  • macOS / Linux — restart your terminal or reload your shell configuration:

    Terminal window
    source ~/.zshrc # or ~/.bashrc

Git displays incorrect characters

If Git shows non-English filenames incorrectly:

Terminal window
git config --global core.quotepath false

Once Node.js and Git are installed, continue to an integration guide: