# Easily manage Node.js versions

Node Version Manager is a command line tool that allows developers to manage multiple versions of Node.js on their systems. With its POSIX-compliant shell script (bash script) structure, it makes it easier to make quick version transitions between different projects.

- ★ 94,630
- Shell
- GitHub Trending · 2026-08-12

## What you get
- Quickly switch between different Node.js versions
- Work seamlessly in POSIX-compliant shells
- Easily install project-specific Node.js versions

## Installation
**Installation using cURL**

```
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.6/install.sh | bash
```

**Installation using wget**

```
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.6/install.sh | bash
```


## Running it
**Installing and using Node.js version**

```
nvm install 24
```


## If you don't write code
I want to manage multiple versions of Node.js on my computer. How do I install Node.js version 24 and switch between different versions using the NVM tool? Can you explain step by step the process of changing the version on the command line?

## Related dictionary terms

## Links
- GitHub repository →
- Read in Turkish →

---
Source: TreScout Discover · https://trescout.com/en/discover/nvm/
