dev-resources.site
for different kinds of informations.
Node Version Manager (nvm) overview
Published at
5/8/2024
Categories
node
nvm
Author
zsevic
Author
6 person written this
zsevic
open
nvm
facilitates switching between different Node versions across projects. This post covers its overview from installation to version management.
Installation
To install nvm
, execute the following commands in your terminal. This example uses zsh
, but the process is similar for other shells like bash
.
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
source ~/.zshrc
Version management
- Install the specific version. Including the
v
prefix is optional.
nvm install v21.7.2
- Install the latest version
nvm install node
- Install the latest one for the specified major version
nvm install 22
- Switch to a specific installed version
nvm use 21
- Add
.nvmrc
file inside the project directory and runnvm use
command to use the specified installed version.
v21.7.2
- Get the list of locally installed versions
nvm ls
- Get the list of available versions for installation
nvm ls-remote
Course
Build your SaaS in 2 weeks - Start Now
nvm Article's
30 articles in total
"nvm use" does not work with nvm-windows
read article
📦 ASDF: Gerenciando versões de linguagens e ferramentas num lugar só
read article
Setup NVM in your organization/admin system's like a pro
read article
Eligiendo la versión por defecto de node con nvm
read article
Migrating from nvm to mise
read article
OMZ: Some Plugins that I forget about
read article
Install/Use Any Version of Node.js with nvm (Node Version Manager)
read article
Brave New World: Environments
read article
Upgrading Node.js on Linux using NVM
read article
Meet phpvm: Your New PHP Best Friend Forever!
read article
Changing the Angular CLI version
read article
Como Instalar o Node.js LTS Usando o NVM
read article
How to install Node.js, NPM and NVM on Windows (node version manager)
read article
Seamlessly Manage Node.js Versions on Windows with nvm
read article
How to use NVM in Laravel Forge
read article
Understanding NPM and NVM: Essential Tools for Node.js Development
read article
Advanced NVM Commands for Efficient Node.js Version Management
read article
Why Specifying the Node.js Version is Essential
read article
NVM Install On Your PC
read article
Manage Node.js version for a project using NVM and .nvmrc file
read article
A simple, cross-platform, and well-tested version manager for multiple SDKs.
read article
Node Version Manager (nvm) overview
currently reading
NVM tips and tricks
read article
nvm으로 node ë²„ì „ 관리하기
read article
HOW TO INSTALL NVM ONÂ WINDOWS
read article
Installing and Managing Different Versions of Node.js with NVM
read article
✨ Consistency and Efficiency with .nvmrc
read article
NVM – Node Version Manager
read article
Setup Node and NVM with Fish Shell
read article
nvm 설치, 2024-01-24
read article
Featured ones: