Environment Check
Before configuring CLI tools, verify your development environment.
Node.js
Most CLI tools require Node.js 18+.
bash
node --version # Should show v18.x.x or higher
npm --versionmacOS / Linux
Install via nvm (recommended):
bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
nvm install --ltsOr download directly from nodejs.org.
Windows
Use LTS version
Restart your terminal after installation for node and npm to be available.
Option 1: Official Installer (Recommended)
Visit https://nodejs.org, download the LTS version Windows Installer (.msi), and install with default settings.
Option 2: Package Manager
powershell
# Winget (built into Windows 11/10)
winget install OpenJS.NodeJS.LTS
# Or Chocolatey
choco install nodejs-lts
# Or Scoop
scoop install nodejs-ltsVerify in CMD or PowerShell:
powershell
node --version
npm --versionNetwork
Verify connectivity to Clauddy:
bash
curl -I https://clauddy.com # Should return HTTP 200powershell
Invoke-WebRequest -Uri https://clauddy.com -Method Head
# Should return StatusCode 200