π¦ ClawHub
NVS Node.js Version Manager
by @zhuzeyu22
Manage Node.js versions using NVS (Node Version Switcher). Use when switching Node.js versions, installing new versions, managing version aliases, or when th...
π‘ Examples
Check if NVS is installed
nvs --version
If NVS is not installed, install it first
#### Windows (PowerShell or Command Prompt)
# Using winget (Windows 11+)
winget install jasongin.nvsOr using chocolatey
choco install nvsManual installation
$env:NVS_HOME="$env:LOCALAPPDATA\nvs"
git clone https://github.com/jasongin/nvs "$env:NVS_HOME"
. "$env:NVS_HOME\nvs.ps1" install
#### Mac/Linux
export NVS_HOME="$HOME/.nvs"
git clone https://github.com/jasongin/nvs "$NVS_HOME"
. "$NVS_HOME/nvs.sh" install
π Tips & Best Practices
nvs command not found, ensure NVS is properly installed and shell is restartedNVS_HOME environment variable points to correct directorynvs which to verify version pathsTERMINAL
clawhub install nvs-node-version-switcher