Last active
April 2, 2019 11:45
-
-
Save munkacsitomi/d70d72ccd59f02b394cb126f2741542c to your computer and use it in GitHub Desktop.
How to change node versions wit Homebrew
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
$ brew search node | |
$ brew install node | |
$ brew install node@8 | |
$ brew unlink node@8 | |
$ brew link --force --overwrite node@8 | |
$ node --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment