Last active
August 23, 2022 20:27
-
-
Save dkhorev/9e295fe94e2948c9149bd9caa5581bca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Installing Node 16: | |
nvm i 16 | |
node -v | |
# v16.15.0 | |
npm -v | |
# 8.5.5 | |
# Switching Node.js versions | |
nvm i 18 | |
# or (if already installed) | |
nvm use 18 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment