Skip to content

Instantly share code, notes, and snippets.

@chranderson
Last active May 15, 2024 03:16
Show Gist options
  • Save chranderson/b0a02781c232f170db634b40c97ff455 to your computer and use it in GitHub Desktop.
Save chranderson/b0a02781c232f170db634b40c97ff455 to your computer and use it in GitHub Desktop.
Useful NVM commands
// check version
node -v || node --version
// list locally installed versions of node
nvm ls
// list remove available versions of node
nvm ls-remote
// install specific version of node
nvm install 18.16.1
// set default version of node
nvm alias default 18.16.1
// switch version of node
nvm use 20.5.1
// install latest LTS version of node (Long Term Support)
nvm install --lts
// install latest stable version of node
nvm install stable
@inzamam-reachfirst
Copy link

inzamam-reachfirst commented Feb 12, 2024

nvm is present in which node command.

Screenshot 2024-02-12 115735

@tresorama
Copy link

From the screenshot your machine load node 18 and not node14, so it seem that is resolved. Is it the case ??

@inzamam-reachfirst
Copy link

It changes the node version but after closing the terminal or vs code, it reverts to node v14. The nvm alias default command is not working on WSL.

@tresorama
Copy link

It changes the node version but after closing the terminal or vs code, it reverts to node v14. The nvm alias default command is not working on WSL.

You don't have current alias. Maybe is this ...
Try this

# create alias named "current" that points to "default" aliased version
nvm alias current default

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment