mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 14:21:50 +00:00
19 lines
754 B
Markdown
19 lines
754 B
Markdown
# nvm - Node Version Manager
|
|
|
|
nvm is a POSIX-compliant bash script that allows you to manage multiple active Node.js versions. It provides a seamless way to switch between different versions of Node.js and manage global npm packages for each version.
|
|
|
|
## Features
|
|
|
|
- **Install**: Install any Node.js version from the command line.
|
|
- **Use**: Easily switch between multiple Node.js versions.
|
|
- **Uninstall**: Remove any Node.js version that you no longer need.
|
|
- **List**: View all installed and available Node.js versions.
|
|
- **Global Packages**: Manage global npm packages for each Node.js version.
|
|
|
|
## Installation
|
|
|
|
To install nvm, you can use the following command:
|
|
|
|
```sh
|
|
curl -o- https://raw.githubusercontent.com/nodoubtz/nvm/main/install.sh | bash
|