Multiple Node.js Versions
Install and switch between multiple Node.js versions with ease. Perfect for testing across versions or working with different projects.
NVM (Node Version Manager) is a tool that allows developers to easily install, manage, and work with multiple Node.js versions. Whether you need to test your application across different Node.js versions or work on projects with specific version requirements, NVM makes it simple to switch between environments.
# Install a specific Node.js version
nvm install 18.16.0
# Use the installed version
nvm use 18.16.0
# Set a default version
nvm alias default 18.16.0
# Install a specific Node.js version
nvm install 18.16.0
# Use the installed version
nvm use 18.16.0
# Set a default version
nvm alias default 18.16.0
Ready to get started with NVM? Follow these steps: