Skip to content

Instantly share code, notes, and snippets.

@0xbe1
Last active May 30, 2022 08:59
Show Gist options
  • Save 0xbe1/db254ad17c00b833776d5f10f938f176 to your computer and use it in GitHub Desktop.
Save 0xbe1/db254ad17c00b833776d5f10f938f176 to your computer and use it in GitHub Desktop.
setup node in linux
# 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