nvm-usage-basics

$npx mdskill add partme-ai/full-stack-skills/nvm-usage-basics

Manages Node.js versions by executing nvm commands for installation, switching, and listing.

  • Helps developers handle Node.js version management tasks like installing and switching versions.
  • Integrates with nvm (Node Version Manager) as the primary tool for version control.
  • Recommends actions based on user queries about nvm commands or Node version operations.
  • Presents results through command-line outputs and structured responses to the agent.

SKILL.md

.github/skills/nvm-usage-basicsView on GitHub ↗
---
name: nvm-usage-basics
description: "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."
license: Complete terms in LICENSE.txt
---

# 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

More from partme-ai/full-stack-skills

SkillDescription
adobe-xd"Guides creation of UI/UX designs, interactive prototypes, reusable components, and design specs in Adobe XD. Use when the user asks about Adobe XD artboards, prototype links, repeat grids, component states, design tokens export, or developer handoff."
angular"Provides comprehensive guidance for Angular framework including components, modules, services, dependency injection, routing, forms, and TypeScript integration. Use when the user asks about Angular, needs to create Angular applications, implement Angular components, or work with Angular features."
ansible"Provides comprehensive guidance for Ansible automation including playbooks, roles, inventory, and module usage. Use when the user asks about Ansible, needs to automate IT tasks, create Ansible playbooks, or manage infrastructure with Ansible."
ant-design-mini"Builds mini-program UIs with Ant Design Mini components for Alipay and WeChat mini-programs. Covers Button, Form, List, Modal, Tabs, NavBar, and 60+ components with theme customization and CSS variable theming. Use when the user needs to create mini-program interfaces with Ant Design Mini, configure themes, or implement mini-program-specific UI patterns."
ant-design-mobile"Builds React mobile UIs with Ant Design Mobile (antd-mobile) components including Button, Form, List, Modal, Picker, Tabs, PullToRefresh, InfiniteScroll, and 50+ mobile-optimized components. Use when the user needs to create mobile-first React interfaces, implement mobile navigation, forms, or data display with Ant Design Mobile."
ant-design-react"Builds enterprise React UIs with Ant Design (antd) including 60+ components (Button, Form, Table, Select, Modal, Message), design tokens, TypeScript support, and ConfigProvider theming. Use when the user needs to create React applications with Ant Design, build forms with validation, display data tables, or customize the Ant Design theme."
ant-design-vueProvides comprehensive guidance for Ant Design Vue (AntDV) component library for Vue 3. Covers installation, usage, API reference, templates, and all component categories. Use when building enterprise-class UI with Vue 3 and Ant Design.
api-doc-generator"Generate API documentation by scanning Controller classes, extracting endpoint URLs, HTTP methods, parameters, and response structures, then producing standardized docs from templates. Use when the user explicitly mentions generating API documentation, creating API docs, scanning interfaces, or documenting REST APIs. Do not trigger for generic documentation requests without explicit API mention."
appium"Provides comprehensive guidance for Appium mobile testing including mobile app automation, element location, gestures, and cross-platform testing. Use when the user asks about Appium, needs to test mobile applications, automate mobile apps, or write Appium test scripts."
ascii-ansi-colorizer"Add an ANSI color layer to existing ASCII/plain-text output (gradient/rainbow/highlights) with alignment-safe rules and a required no-color fallback. Use when the user wants to colorize terminal output, add rainbow effects to CLI text, or style ASCII art with ANSI colors."