multiAI Summary Pending
nvm-usage-basics
Manage Node.js versions with everyday nvm commands: install specific versions, switch active versions, list installed and remote versions, and use LTS releases. Use when the user asks about nvm install, nvm use, nvm ls, listing available Node versions, or switching between Node versions.
223 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/nvm-usage-basics/SKILL.md --create-dirs "https://raw.githubusercontent.com/partme-ai/full-stack-skills/main/skills/nvm-skills/nvm-usage-basics/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/nvm-usage-basics/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How nvm-usage-basics Compares
| Feature / Agent | nvm-usage-basics | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Manage Node.js versions with everyday nvm commands: install specific versions, switch active versions, list installed and remote versions, and use LTS releases. Use when the user asks about nvm install, nvm use, nvm ls, listing available Node versions, or switching between Node versions.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# nvm Usage Basics Install, switch, and list Node.js versions using core nvm commands. ## Workflow 1. **List available remote versions:** ```bash nvm ls-remote # All available versions nvm ls-remote --lts # Only LTS releases nvm ls-remote | grep v20 # Filter specific major version ``` 2. **Install a Node version:** ```bash nvm install 20 # Latest v20.x nvm install 20.11.0 # Exact version nvm install --lts # Latest LTS release nvm install node # Latest current release ``` 3. **Switch between versions:** ```bash nvm use 20 # Switch to v20.x nvm use --lts # Switch to latest LTS nvm use system # Use system-installed Node ``` 4. **List installed versions and verify:** ```bash nvm ls # Show installed versions nvm current # Show active version node -v # Confirm active version ``` **Note:** For default version or .nvmrc, use the nvm-defaults-and-nvmrc skill. LTS is recommended for production stability. ### Example file map - `examples/usage.md` - General usage overview - `examples/install-version.md` - Version installation details - `examples/use-version.md` - Switching versions - `examples/list-versions.md` - Listing and filtering versions - `examples/long-term-support.md` - LTS management - `examples/system-node.md` - System Node usage - `examples/iojs.md` - io.js compatibility ## Keywords nvm use, nvm install, nvm ls, ls-remote, LTS, system node, node versions