Last active
May 29, 2019 04:40
-
-
Save clonn/6591908 to your computer and use it in GitHub Desktop.
node install flow by nvm
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
# linux or mac | |
cd ~/ | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash | |
cat ~/.nvm/nvm.sh >> ~/.bashrc | |
source ~/.nvm/nvm.sh | |
nvm install v10.15.3 | |
nvm use v10.15.3 | |
nvm alias default v10.15.3 | |
# windows user please download this. | |
# https://github.com/coreybutler/nvm-windows/releases | |
# and follow the guide |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment