Full-stack-skills nvm-install
Install and update nvm (Node Version Manager) using curl/wget scripts, git clone, or manual methods. Covers profile selection, NVM_DIR configuration, and Alpine Linux support. Use when the user asks to install nvm, update nvm, set up nvm for the first time, or troubleshoot nvm installation scripts.
install
source · Clone the upstream repo
git clone https://github.com/partme-ai/full-stack-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/partme-ai/full-stack-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/nvm-skills/nvm-install" ~/.claude/skills/partme-ai-full-stack-skills-nvm-install && rm -rf "$T"
manifest:
skills/nvm-skills/nvm-install/SKILL.mdsource content
Install and Update nvm
Install or upgrade nvm from the official source using script, git, or manual methods.
Workflow
-
Identify platform and shell (macOS, Linux, WSL, Alpine; bash/zsh/fish).
-
Install via curl or wget:
# Using curl curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash # Using wget wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash -
Verify the profile was updated (the script writes to
,~/.bashrc
, or~/.zshrc
):~/.profile# Required lines in your profile: export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" -
Verify installation:
# Restart terminal, then: nvm --version -
Override PROFILE if the auto-detection picked the wrong file:
PROFILE=/path/to/custom/profile curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
Notes:
- The install script writes to the detected profile unless PROFILE is explicitly set.
- For restricted networks, use the nvm-mirror-and-auth skill instead.
- Usage, .nvmrc, or troubleshooting belong to other nvm-* skills.
Example file map
- Standard installationexamples/installation.md
- Updating existing nvmexamples/install-update-script.md
- Platform-specific notesexamples/install-additional-notes.md
- Git-based installationexamples/git-install.md
- Manual installationexamples/manual-install.md
- Manual upgrade stepsexamples/manual-upgrade.md
- Alpine Linux installationexamples/alpine-install.md
Keywords
nvm install, install.sh, PROFILE, NVM_DIR, NVM_SOURCE, curl, wget, manual install, update