Last active
May 30, 2022 08:59
-
-
Save 0xbe1/db254ad17c00b833776d5f10f938f176 to your computer and use it in GitHub Desktop.
setup node in linux
This file contains hidden or 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
# install nvm and npm | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash | |
# install node 16 | |
nvm install 16 | |
# use node 16 | |
nvm use 16 | |
# verify | |
node --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment