skills/nvm-skills/nvm-install/SKILL.md
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.
npx skillsauth add partme-ai/full-stack-skills nvm-installInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Install or upgrade nvm from the official source using script, git, or manual methods.
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, ~/.zshrc, or ~/.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:
examples/installation.md - Standard installationexamples/install-update-script.md - Updating existing nvmexamples/install-additional-notes.md - Platform-specific notesexamples/git-install.md - Git-based installationexamples/manual-install.md - Manual installationexamples/manual-upgrade.md - Manual upgrade stepsexamples/alpine-install.md - Alpine Linux installationnvm install, install.sh, PROFILE, NVM_DIR, NVM_SOURCE, curl, wget, manual install, update
development
Provides per-component and per-API examples with cross-platform compatibility details for uni-app, covering built-in components, uni-ui components, and APIs (network, storage, device, UI, navigation, media). Use when the user needs official uni-app components or APIs, wants per-component examples with doc links, or needs platform compatibility checks.
tools
Creates new uni-app projects via the official CLI or HBuilderX with Vue 2/Vue 3 template selection, manifest.json and pages.json configuration, and directory structure setup. Use when the user wants to scaffold a new uni-app project, initialize project files with a single command, or set up the development environment.
tools
Browses, installs, configures, and manages plugins from the uni-app plugin market (ext.dcloud.net.cn) including component plugins, API plugins, and template plugins with dependency handling. Use when the user needs to find and install uni-app plugins, configure plugin settings, manage plugin dependencies, or integrate third-party components.
tools
Develops native Android and iOS plugins for uni-app including module creation, JavaScript-to-native communication, and plugin packaging for distribution. Use when the user needs to build custom native modules, extend uni-app with native capabilities (camera, Bluetooth, sensors), or create publishable native plugins.