Skip to content

Instantly share code, notes, and snippets.

@ThePredators
Created October 1, 2023 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThePredators/759592c621fd72b4cab9c9cb2f803f62 to your computer and use it in GitHub Desktop.
Save ThePredators/759592c621fd72b4cab9c9cb2f803f62 to your computer and use it in GitHub Desktop.

🔥 Node Version Manager (CheatSheet)

Install :

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

Usage :

## List available versions
nvm ls-remote

## Install a specific version of node
nvm install 12

## Use a specific version
nvm use 18.18.0

Migration

## Upgrade to last LTS version & update your project
nvm install 'lts/*' --reinstall-packages-from=current
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment