Verify nvm installation is working correctly by checking nvm, node, and npm commands, diagnosing PATH order, and inspecting profile loading. Use when the user reports nvm command not found, wants to verify nvm is installed, or needs to diagnose why nvm is not loading in new terminal sessions.
Scanned 5/27/2026
Install to Claude Code
npx -y skills add partme-ai/full-stack-skills --skill nvm-verify --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Nvm Verify?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/partme-ai-nvm-verify)More formats (shields.io, HTML) on the badges page.
---
name: nvm-verify
description: "Verify nvm installation is working correctly by checking nvm, node, and npm commands, diagnosing PATH order, and inspecting profile loading. Use when the user reports nvm command not found, wants to verify nvm is installed, or needs to diagnose why nvm is not loading in new terminal sessions."
license: Complete terms in LICENSE.txt
---
# Verify nvm Installation
Run diagnostic checks to confirm nvm is installed and loading correctly.
## Workflow
1. **Check nvm, node, and npm:**
```bash
nvm --version # Should print nvm version (e.g., 0.40.1)
node -v # Should print Node version
npm -v # Should print npm version
command -v nvm # Should print "nvm" (it's a shell function)
```
2. **If nvm is not found, inspect the profile:**
```bash
# Check which profile is loaded
echo $SHELL
# Inspect for nvm lines:
grep -n "nvm" ~/.bashrc ~/.zshrc ~/.profile 2>/dev/null
```
3. **Check PATH and NVM_DIR:**
```bash
echo "NVM_DIR=$NVM_DIR"
echo $PATH | tr ':' '\n' | grep nvm
ls -la "$NVM_DIR/nvm.sh" 2>/dev/null && echo "nvm.sh exists" || echo "nvm.sh NOT FOUND"
```
4. **Fix and verify** in a new terminal session:
```bash
# After fixing profile, open a new terminal:
command -v nvm && echo "nvm OK" || echo "nvm still broken"
```
**Important:** nvm is a shell function, not a binary, so the profile must load correctly. For deeper platform issues, use nvm-troubleshooting-macos or nvm-troubleshooting-linux.
### Example file map
- `examples/verify-installation.md` - Full verification checklist
- `examples/problems.md` - Common problems and solutions
- `examples/restore-path.md` - PATH restoration
- `examples/important-notes.md` - Key things to know about nvm
## Keywords
nvm verify, nvm --version, node -v, npm -v, PATH, profile, verification, nvm not found
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.
SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.
Python backend development expertise for FastAPI, security patterns, database operations, Upstash integrations, and code quality. Use when: (1) Building REST APIs with FastAPI, (2) Implementing JWT/OAuth2 authentication, (3) Setting up SQLAlchemy/async databases, (4) Integrating Redis/Upstash caching, (5) Refactoring AI-generated Python code (deslopification), (6) Designing API patterns, or (7) Optimizing backend performance.
Drive the full internationalization journey for a project — detect the stack, recommend a library, set up the chosen library, wrap existing strings, and optionally connect a translation platform. Use when the user asks to add or configure i18n, internationalization, localization, multi-language support, or translations — including when they explicitly mention LinguiJS, Lingui, next-intl, "wrap strings", "find hardcoded text", "make my app translatable", or "set up translations". Triggers on g...
PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.